forked from soramitsu/fearless-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
45 lines (36 loc) · 1.43 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 => 'f821a9352d1592d60a43b7ced4fe977373d445a4'
pod 'SwiftLint'
pod 'R.swift', :inhibit_warnings => true
pod 'FireMock', :inhibit_warnings => true
pod 'SoraKeystore'
pod 'SoraUI'
pod 'RobinHood'
pod 'CommonWallet/Core', :git => 'https://github.com/soramitsu/Capital-iOS.git', :commit => '725cefe1d0fa1ea8456580289b326558b13225c2'
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 => 'f821a9352d1592d60a43b7ced4fe977373d445a4'
pod 'SoraFoundation', '~> 0.8.0'
pod 'FireMock'
pod 'SoraKeystore'
pod 'RobinHood'
pod 'CommonWallet/Core', :git => 'https://github.com/soramitsu/Capital-iOS.git', :commit => '725cefe1d0fa1ea8456580289b326558b13225c2'
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