-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPodfile
60 lines (54 loc) · 1.63 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
source 'https://github.com/Cocoapods/Specs'
use_frameworks!
platform :ios, '10.0'
def shared_pods
pod 'MinterCore', :git => 'https://github.com/MinterTeam/minter-ios-core.git', :branch => 'texas'
pod 'MinterMy', :path => '../../minter-ios-my'
pod 'MinterExplorer', :path => '../../minter-ios-explorer'
pod 'Alamofire'
pod 'AlamofireImage'
pod 'RxSwift'
pod 'RxBiBinding'
pod 'RxGesture'
pod 'RxDataSources'
pod 'RxAppState'
pod 'SwiftValidator', :git => 'https://github.com/jpotts18/SwiftValidator.git', :branch => 'master'
pod 'TPKeyboardAvoiding', '~> 1.3'
pod 'KeychainSwift', '12.0.0'
pod 'RealmSwift', git: 'https://github.com/realm/realm-cocoa.git', branch: 'master', submodules: true
pod 'AFDateHelper', '~> 4.2.2'
pod 'NotificationBannerSwift', '1.8.0'
pod 'Fabric', '~> 1.7'
pod 'Crashlytics', '~> 3.10'
pod 'ObjectMapper', '~> 3.3'
pod 'XLPagerTabStrip', '~> 8.0'
pod 'ReachabilitySwift', '~> 4.3'
pod 'YandexMobileMetrica/Dynamic', '3.2.0'
pod 'SwiftCentrifuge'
pod 'GoldenKeystore', :git => 'https://github.com/sidorov-panda/GoldenKeystore'
pod 'GrowingTextView'
pod 'CryptoSwift', '~> 1.0'
pod 'SwiftLint'
pod 'DeckTransition', '~> 2.0'
end
target 'MinterWallet' do
shared_pods
end
target 'MinterWalletTestnet' do
shared_pods
inherit! :search_paths
end
target 'MinterWalletTests' do
pod 'CryptoSwift', '~> 1.0'
shared_pods
inherit! :search_paths
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['NotificationBannerSwift'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5'
end
end
end
end