blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
platform :ios, '9.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 'APIKit'
|
|
pod 'Eureka', '~> 4.0.1'
|
|
pod 'MBProgressHUD'
|
|
pod 'StatefulViewController'
|
|
pod 'QRCodeReaderViewController', :git=>'https://github.com/yannickl/QRCodeReaderViewController.git', :branch=>'master'
|
|
pod 'KeychainSwift'
|
|
pod 'SwiftLint'
|
|
pod 'SeedStackViewController'
|
|
pod 'RealmSwift'
|
|
pod 'BonMot', '~> 5.0'
|
|
pod 'VENTouchLock'
|
|
pod '1PasswordExtension'
|
|
pod 'Lokalise'
|
|
pod 'Moya', '~> 10.0.1'
|
|
pod 'JavaScriptKit'
|
|
pod 'CryptoSwift', :git=>'https://github.com/krzyzanowskim/CryptoSwift', :branch=>'master'
|
|
pod 'Fabric'
|
|
pod 'Crashlytics'
|
|
pod 'Kingfisher', '~> 4.0'
|
|
pod 'TrustKeystore', :git=>'https://github.com/TrustWallet/trust-keystore', :branch=>'master'
|
|
# pod 'web3swift', :git=>'https://github.com/BANKEX/web3swift', :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
|
|
end
|
|
end
|
|
|
|
|