-
Notifications
You must be signed in to change notification settings - Fork 17
/
Podfile
34 lines (28 loc) · 984 Bytes
/
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
target 'iOSProjectSetup' do
pod 'Alamofire', '4.9.0'
pod 'RxSwift', '5.0.0'
pod 'RxCocoa', '5.0.0'
end
target 'iOSProjectSetupTests' do
pod 'RxSwift', '5.0.0'
pod 'RxCocoa', '5.0.0'
pod 'RxBlocking', '5.0.0'
pod 'RxTest', '5.0.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5.0'
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = '$(inherited)'
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ''
if config.name == 'Release'
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
else
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
end
end
end
end