ZcashLightClientKit/Example/ZcashLightClientSample/Podfile

52 lines
1.4 KiB
Plaintext
Raw Normal View History

platform :ios, '13.0'
2019-09-09 08:30:38 -07:00
target 'ZcashLightClientSample' do
# Comment the next line if you don't want to use dynamic frameworks
2020-10-08 11:45:45 -07:00
use_frameworks!
pod "KRProgressHUD"
2019-09-09 08:30:38 -07:00
# Pods for ZcashLightClientSample
pod 'ZcashLightClientKit', :path => '../../', :testspecs => ['Tests']
2020-09-02 11:34:06 -07:00
pod 'gRPC-Swift', '= 1.0.0-alpha.19'
pod 'PaginatedTableView'
pod 'NotificationBubbles'
2020-09-28 08:29:09 -07:00
pod 'MnemonicSwift', '~> 2.0.0'
pod 'gRPC-Swift-Plugins', '= 1.0.0-alpha.19'
2019-09-09 08:30:38 -07:00
target 'ZcashLightClientSampleTests' do
use_frameworks!
2019-09-09 08:30:38 -07:00
inherit! :search_paths
# Pods for testing
end
target 'ZcashLightClientSampleUITests' do
inherit! :search_paths
# Pods for testing
end
2020-01-14 14:25:14 -08:00
end
2019-09-09 08:30:38 -07:00
2020-01-14 14:25:14 -08:00
target 'ZcashLightClientSample-Mainnet' do
inherit! :search_paths
use_frameworks!
pod "KRProgressHUD"
pod 'PaginatedTableView'
pod 'NotificationBubbles'
pod 'ZcashLightClientKit', :path => '../../'
2019-09-09 08:30:38 -07:00
end
2020-01-14 14:25:14 -08:00
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
if target.name == 'ZcashLightClientKit-Unit-Tests'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = "13.0"
end
2020-01-14 14:25:14 -08:00
if target.name == 'ZcashLightClientKit'
config.build_settings['ZCASH_NETWORK_ENVIRONMENT'] = ENV["ZCASH_NETWORK_ENVIRONMENT"]
end
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end