forked from soramitsu/fearless-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
45 lines (36 loc) · 1.46 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
platform :ios, '11.0'
abstract_target 'fearlessAll' do
use_frameworks!
pod 'FearlessUtils', :git => 'https://github.com/soramitsu/fearless-utils-iOS.git', :commit => 'fc2b66b7dfa4dcf39ace7059dff80022de6add40'
pod 'SwiftLint'
pod 'R.swift', :inhibit_warnings => true
pod 'SoraKeystore'
pod 'SoraUI', '1.9.3'
pod 'RobinHood'
pod 'CommonWallet/Core', :git => 'https://github.com/soramitsu/Capital-iOS.git', :commit => '29518e70c1a386405c19f2f335eaeef6d500c4ad'
pod 'SoraFoundation', '~> 0.8.0'
pod 'SwiftyBeaver'
pod 'Starscream', :git => 'https://github.com/ERussel/Starscream.git', :branch => 'feature/without-origin'
pod 'ReachabilitySwift'
pod 'SwiftGifOrigin', '~> 1.7.0'
target 'fearlessTests' do
inherit! :search_paths
pod 'Cuckoo'
pod 'FearlessUtils', :git => 'https://github.com/soramitsu/fearless-utils-iOS.git', :commit => 'fc2b66b7dfa4dcf39ace7059dff80022de6add40'
pod 'SoraFoundation', '~> 0.8.0'
pod 'R.swift', :inhibit_warnings => true
pod 'FireMock', :inhibit_warnings => true
pod 'SoraKeystore'
pod 'RobinHood'
pod 'CommonWallet/Core', :git => 'https://github.com/soramitsu/Capital-iOS.git', :commit => '29518e70c1a386405c19f2f335eaeef6d500c4ad'
end
target 'fearlessIntegrationTests'
target 'fearless'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end