-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
31 lines (25 loc) · 887 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
platform :ios, '12.0'
target 'PhDownloader' do
pod 'Alamofire', '~> 5.6'
pod 'RxAlamofire', '~> 6.1'
pod 'RxSwift', '~> 6.5'
pod 'RxRelay', '~> 6.5'
pod 'Realm', '~> 10.40.1', :modular_headers => true
pod 'RealmSwift', '~> 10.40.1'
# FIXME https://github.com/RxSwiftCommunity/RxRealm/issues/201
pod 'RxRealm', :git => 'https://github.com/RxSwiftCommunity/RxRealm.git', :tag => 'v5.0.6'
target 'PhDownloaderTests' do
end
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
project.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end