-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathPodfile
40 lines (34 loc) · 983 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
35
36
37
38
39
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
target 'ethereum-wallet' do
# Pods for ethereum-wallet
pod 'R.swift', '4.0.0'
pod 'Geth', '1.8.17'
pod 'RealmSwift', '3.11.0'
pod 'SpringIndicator', '4.0.1'
pod 'AlamofireObjectMapper', '5.1.0'
pod 'CryptoSwift', '0.12.0'
pod 'PullToDismiss', '2.1'
pod 'lottie-ios', '2.5.2'
pod 'Dwifft', '0.9'
pod 'EmptyDataSet-Swift', '~> 4.2.0'
pod 'JSONRPCKit'
end
target 'ConicoinTests' do
pod 'CryptoSwift', '0.12.0'
end
swift4 = ['PullToDismiss', 'R.swift.Library']
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if swift4.include?(target.name)
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end