ZcashLightClientKit/Example/ZcashLightClientSample/Podfile

50 lines
1.3 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
2021-04-02 15:18:16 -07:00
pod 'ZcashLightClientKit', :path => '../../', :testspecs => ['Tests', 'DerivationToolTests']
2021-04-20 07:49:10 -07:00
pod 'gRPC-Swift', '= 1.0.0'
pod 'PaginatedTableView'
pod 'NotificationBubbles'
2020-09-28 08:29:09 -07:00
pod 'MnemonicSwift', '~> 2.0.0'
2021-04-20 07:49:10 -07:00
pod 'gRPC-Swift-Plugins', '= 1.0.0'
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 'MnemonicSwift', '~> 2.0.0'
2020-01-14 14:25:14 -08:00
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
2021-07-28 13:03:09 -07:00
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end