2020-06-16 12:45:53 -07:00
|
|
|
platform :ios, '13.1'
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
inhibit_all_warnings!
|
|
|
|
target 'Zircles' do
|
2020-06-24 19:26:14 -07:00
|
|
|
pod 'ZcashLightClientKit', :path => "../hackathon-ZcashLightClientKit"
|
2020-06-16 12:45:53 -07:00
|
|
|
pod 'KeychainSwift', '~> 19.0.0'
|
|
|
|
pod 'MnemonicSwift'
|
|
|
|
pod 'lottie-ios'
|
|
|
|
target 'ZirclesTests' do
|
|
|
|
inherit! :search_paths
|
|
|
|
end
|
|
|
|
|
|
|
|
target 'ZirclesUITests' do
|
2020-06-16 13:55:27 -07:00
|
|
|
inherit! :complete
|
2020-06-16 12:45:53 -07:00
|
|
|
end
|
2020-06-16 13:55:27 -07:00
|
|
|
end
|
2020-06-16 12:45:53 -07:00
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
if target.name == 'ZcashLightClientKit'
|
|
|
|
config.build_settings['ZCASH_NETWORK_ENVIRONMENT'] = ENV["ZCASH_NETWORK_ENVIRONMENT"]
|
|
|
|
end
|
|
|
|
config.build_settings['ENABLE_BITCODE'] = 'NO'
|
|
|
|
end
|
|
|
|
end
|
2020-06-24 19:26:14 -07:00
|
|
|
end
|