ZcashLightClientKit/Example/ZcashLightClientSample/Podfile

48 lines
1.3 KiB
Plaintext
Raw Normal View History

platform :ios, '12.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
use_frameworks!
pod "KRProgressHUD"
2019-09-09 08:30:38 -07:00
# Pods for ZcashLightClientSample
pod 'ZcashLightClientKit', :path => '../../', :testspecs => ['Tests']
pod 'gRPC-Swift', '~> 1.0.0-alpha.11'
pod 'PaginatedTableView'
pod 'NotificationBubbles'
2019-09-09 08:30:38 -07:00
target 'ZcashLightClientSampleTests' do
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|
2019-12-20 12:52:53 -08:00
# if target.name.include? '-Unit-Tests'
# Xcodeproj::XCScheme.share_scheme(installer.pods_project.path, target.name)
# end
target.build_configurations.each do |config|
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