-
Notifications
You must be signed in to change notification settings - Fork 10
/
Podfile
85 lines (74 loc) · 2.38 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'Multy' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Multy
pod 'RealmSwift'
pod 'R.swift'
pod 'LTMorphingLabel', '0.5.7'
pod 'ZFRippleButton'
pod 'ButtonProgressBar-iOS'
pod 'CryptoSwift', '~> 0.9.0'
pod 'SecurityExtensions'
pod 'GGLInstanceID'
pod 'Alamofire'
pod 'Socket.IO-Client-Swift'
pod 'RevealingSplashView'
pod 'RAMAnimatedTabBarController', '~> 3.5.0'
pod 'Firebase'
pod 'Firebase/Messaging'
pod 'Fabric'
pod 'Crashlytics'
pod 'Branch'
pod 'SwiftyStoreKit'
pod 'lottie-ios'
pod 'UPCarouselFlowLayout'
pod 'SwiftyContacts'
pod 'UICircularProgressRing', '~> 3.3.2'
pod 'Hash2Pics'
pod 'Web3'
pod 'Web3/ContractABI'
pod 'moa', '~> 10.0'
pod 'GSMessages'
pod 'CommonCryptoSwift', git: 'https://github.com/jaredsinclair/CommonCrypto.swift.git'
# pod 'MultyCoreLibrary'#, '0.1.7'
#dapp
# pod 'Result'
pod 'TrustCore', :git=>'https://github.com/TrustWallet/trust-core', :commit=>'b539f0ff5d5fa344ba0b910c09bc9c65cb863660'
pod 'TrustWeb3Provider', :git=>'https://github.com/TrustWallet/trust-web3-provider', :commit=>'f4e0ebb1b8fa4812637babe85ef975d116543dfd'
pod 'JSONRPCKit', :git=> 'https://github.com/bricklife/JSONRPCKit.git'
pod 'StatefulViewController'
pod 'Arranged'
target 'MultyTests' do
inherit! :search_paths
# Pods for testing
pod 'Quick'
pod 'Nimble'
end
target 'MultyUITests' do
inherit! :complete
# Pods for testing
pod 'Quick'
pod 'Nimble'
pod 'Firebase'
end
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
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
end
end