passforios/Podfile
2020-02-17 17:34:21 -08:00

32 lines
586 B
Ruby

platform :ios, '10.2'
use_frameworks!
def pods
pod 'ObjectivePGP', :git => 'https://github.com/mssun/ObjectivePGP.git', :tag => '0.15.1'
end
target 'passKit' do
pods
end
target 'pass' do
pods
end
target 'passExtension' do
pods
end
target 'passKitTests' do
pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
cflags = config.build_settings['OTHER_CFLAGS'] || ['$(inherited)']
cflags << '-fembed-bitcode'
config.build_settings['OTHER_CFLAGS'] = cflags
end
end
end