-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
75 lines (65 loc) · 2.19 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
abstract_target 'SoraPassportAll' do
use_frameworks!
pod 'SwiftLint'
pod 'R.swift', :inhibit_warnings => true
pod 'FireMock', :inhibit_warnings => true
pod 'GCDWebServer', :inhibit_warnings => true
pod 'SoraDocuments'
pod 'SoraCrypto'
pod 'SoraKeystore'
pod 'SoraUI'
pod 'RobinHood'
pod 'Kingfisher', :inhibit_warnings => true
pod 'CommonWallet', :git => 'https://github.com/soramitsu/Capital-iOS.git', :commit => 'e9801f64b9434f4a032c5896e87547476a0274c6'
pod 'FirebaseMessaging'
pod 'Firebase/Crashlytics'
pod 'FirebaseAnalytics'
pod 'ReachabilitySwift'
pod 'SwiftyBeaver'
pod 'SKPhotoBrowser'
pod 'SoraFoundation', '~> 0.8.0'
pod 'web3swift'
pod 'IrohaCrypto'
pod 'IKEventSource'
target 'SoraPassportTests' do
inherit! :search_paths
pod 'Cuckoo'
pod 'FireMock'
pod 'SoraUI'
pod 'SoraDocuments'
pod 'SoraCrypto'
pod 'SoraKeystore'
pod 'RobinHood'
pod 'IrohaCrypto'
pod 'CommonWallet', :git => 'https://github.com/soramitsu/Capital-iOS.git', :commit => 'e9801f64b9434f4a032c5896e87547476a0274c6'
pod 'SoraFoundation', '~> 0.8.0'
pod 'web3swift'
end
target 'SoraPassportUITests' do
inherit! :search_paths
end
target 'SoraPassportIntegrationTests'
target 'SoraPassport'
end
post_install do |installer|
installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
end
installer.generated_projects.each do |project|
project.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 9.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 9.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'NO'
end
end
end
end
end