forked from trustwallet/trust-wallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Podfile
69 lines (62 loc) · 2.05 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
platform :ios, '11.0'
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
target 'KyberNetwork' do
use_frameworks!
pod 'BigInt', '~> 3.1.0'
pod 'JSONRPCKit', '~> 3.0.0' #:git=> 'https://github.com/bricklife/JSONRPCKit.git'
pod 'APIKit', '~> 3.2.1'
pod 'Eureka', '~> 4.1.1'
pod 'MBProgressHUD', '~> 1.1.0'
pod 'StatefulViewController', '~> 3.0'
pod 'QRCodeReaderViewController', '~> 4.0.2' #:git=>'https://github.com/yannickl/QRCodeReaderViewController.git', :branch=>'master'
pod 'KeychainSwift', '~> 13.0.0'
pod 'SwiftLint', '~> 0.29.4'
pod 'SeedStackViewController'
pod 'RealmSwift', '~> 3.19.0'
pod 'Lokalise', '~> 0.8.1'
pod 'Moya', '~> 10.0.1'
pod 'JavaScriptKit', '~> 1.0.0'
pod 'CryptoSwift', '~> 0.10.0'
pod 'Fabric', '~> 1.9.0'
pod 'Crashlytics', '~> 3.12.0'
pod 'Kingfisher', '~> 4.10.1'
pod 'TrustCore', '~> 0.0.7'
pod 'TrustKeystore', '~> 0.4.2'
pod 'WalletConnect', git: 'https://github.com/trustwallet/wallet-connect-swift', branch: 'master'
pod 'Branch', '~> 0.25.11'
# pod 'web3swift', :git=>'https://github.com/BANKEX/web3swift', :branch=>'master'
pod 'SAMKeychain', '~> 1.5.3'
pod 'IQKeyboardManager', '~> 6.2.1'
pod 'SwiftMessages', '~> 5.0.1'
pod 'SwiftChart', '~> 1.0.1'
pod 'JdenticonSwift', '~> 0.0.1'
pod 'MSCircularSlider', '~> 1.2.2'
pod 'EasyTipView', '~> 2.0.1'
pod 'OneSignal', '>= 2.11.2', '< 3.0'
pod 'FBSDKLoginKit/Swift'
pod 'FBSDKLoginKit/Swift'
pod 'GoogleSignIn', '~> 4.4.0'
pod 'TwitterKit', '~> 3.4.2'
pod 'Firebase/Core'
pod 'Firebase/Analytics'
pod 'Firebase/RemoteConfig'
pod 'AppsFlyerFramework'
target 'KyberNetworkTests' do
inherit! :search_paths
# Pods for testing
end
target 'KyberNetworkUITests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['TrustKeystore'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
end
end
end
end