forked from mymonero/mymonero-app-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
35 lines (29 loc) · 742 Bytes
/
Podfile
File metadata and controls
35 lines (29 loc) · 742 Bytes
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, '10.0'
use_frameworks!
def common_pods
pod 'BigInt', '3.1.0'
pod 'SwiftDate', '4.5.1'
pod 'Alamofire', '4.7.3'
pod 'RNCryptor', '5.0.3'
pod 'ReachabilitySwift', '4.3.0'
pod 'PKHUD', '5.2.0'
pod 'AMPopTip', '3.5.0'
pod 'Popover', '1.2.0'
pod 'ofxiOSBoost', '1.60.0'
end
target 'MyMonero' do
common_pods
end
# pending https://github.com/CocoaPods/CocoaPods/issues/7134
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name == 'Popover'
config.build_settings['SWIFT_VERSION'] = '4.0'
else
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end