-
Notifications
You must be signed in to change notification settings - Fork 12
/
Podfile
55 lines (45 loc) · 1.32 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
platform :ios, '10.0'
inhibit_all_warnings!
target 'BankexWallet' do
use_frameworks!
pod 'web3swift', '<= 1.1.1'
pod "SugarRecord/CoreData", '<= 3.1'
pod 'Popover', '~> 1.2.0'
pod 'Amplitude-iOS', '~> 4.0.4'
pod 'Firebase/Core', '~> 5.14.0'
pod 'Firebase/DynamicLinks', '~> 5.14.0'
pod 'Firebase/RemoteConfig', '~> 5.14.0'
pod 'Firebase/Messaging', '~> 5.14.0'
pod 'ReachabilitySwift', '~> 4.2.1'
pod 'SkeletonView', '~> 1.4'
pod 'VisualEffectView', '~> 3.1.0'
pod 'GrowingTextView', '~> 0.6.1'
pod 'SDWebImage', '~> 4.0'
pod 'Fabric', '~> 1.7.13'
pod 'Crashlytics', '~> 3.10.9'
target 'BankexWalletTests' do
inherit! :search_paths
pod 'KIF', :configurations => ['Debug']
end
target 'BankexWalletUITests' do
inherit! :search_paths
end
end
target 'Wallet Widget' do
use_frameworks!
pod 'Fabric', '~> 1.7.13'
pod 'Crashlytics', '~> 3.10.9'
end
pods_with_specific_swift_versions = {
'GrowingTextView' => '4.2',
}
post_install do |installer|
installer.pods_project.targets.each do |target|
if pods_with_specific_swift_versions.key? target.name
swift_version = pods_with_specific_swift_versions[target.name]
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = swift_version
end
end
end
end