-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
68 lines (54 loc) · 1.73 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
# ignore all warnings from all dependencies
inhibit_all_warnings!
# supportet swift versions
supports_swift_versions '>= 5.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
target 'YouTVDemo' do
inhibit_all_warnings!
# Pods for DutchNews
pod 'Alamofire'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'RxAlamofire'
pod 'PureLayout'
pod 'MXParallaxHeader'
pod 'Pageboy'
# pod 'JEKScrollableSectionCollectionViewLayout', :git => 'https://github.com/farshadmb/JEKScrollableSectionCollectionViewLayout.git'
pod 'MaterialComponents'
pod 'SwiftLint'
pod 'CryptoSwift', '1.1.2'
pod 'SDWebImage'
pod 'XCoordinator'
#Logger Framework
pod 'CocoaLumberjack/Swift'
end
target 'YouTVDemoTests' do
inherit! :complete
pod 'RxAlamofire'
pod 'RxTest'
pod 'RxBlocking'
pod 'Nimble'
pod 'Mocker', '~> 1.0.0'
# Pods for testing
end
post_install do |installer|
# this code for make resolve waring that be noticed by xcode 12.
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
# this code for make all IBDesignable work for IB Designer in xcode 12.
installer.pods_project.build_configurations.each do | config |
if config.name == 'Debug'
# config.build_settings['CODE_SIGNING_ALLOWED'] = 'YES'
config.build_settings['LD_RUNPATH_SEARCH_PATHS'] = ['$(FRAMEWORK_SEARCH_PATHS)']
# config.build_settings.delete('CODE_SIGNING_ALLOWED')
# config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end
end