forked from trustwallet/trust-wallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
63 lines (57 loc) · 1.9 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
platform :ios, '10.0'
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
target 'Trust' do
use_frameworks!
pod 'BigInt', '~> 3.0'
pod 'R.swift'
pod 'JSONRPCKit', :git=> 'https://github.com/bricklife/JSONRPCKit.git'
pod 'PromiseKit', '~> 6.0'
pod 'APIKit'
pod 'Eureka'
pod 'MBProgressHUD'
pod 'StatefulViewController'
pod 'QRCodeReaderViewController', :git=>'https://github.com/yannickl/QRCodeReaderViewController.git', :branch=>'master'
pod 'KeychainSwift'
pod 'SwiftLint'
pod 'SeedStackViewController'
pod 'RealmSwift'
pod 'Moya', '~> 10.0.1'
pod 'CryptoSwift', '~> 0.10.0'
pod 'Kingfisher', '~> 4.0'
pod 'TrustCore', :git=>'https://github.com/TrustWallet/trust-core', :branch=>'master'
pod 'TrustKeystore', :git=>'https://github.com/TrustWallet/trust-keystore', :branch=>'master'
pod 'TrezorCrypto'
pod 'Branch'
pod 'SAMKeychain'
pod 'TrustWeb3Provider', :git=>'https://github.com/TrustWallet/trust-web3-provider', :commit=>'f4e0ebb1b8fa4812637babe85ef975d116543dfd'
pod 'URLNavigator'
pod 'TrustWalletSDK', :git=>'https://github.com/TrustWallet/TrustSDK-iOS', :branch=>'master'
target 'TrustTests' do
inherit! :search_paths
# Pods for testing
end
target 'TrustUITests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['JSONRPCKit'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
if ['TrustKeystore'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
end
end
# if target.name != 'Realm'
# target.build_configurations.each do |config|
# config.build_settings['MACH_O_TYPE'] = 'staticlib'
# end
# end
end
end