ZcashLightClientKit/Example/ZcashLightClientSample/Podfile

27 lines
678 B
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']
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
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end