2019-07-17 00:19:23 +08:00
|
|
|
platform :ios, '10.2'
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
2019-07-16 17:02:09 -07:00
|
|
|
def pods
|
2020-02-16 18:41:44 -08:00
|
|
|
pod 'ObjectivePGP', :git => 'https://github.com/mssun/ObjectivePGP.git', :tag => '0.15.1'
|
2019-07-16 17:02:09 -07:00
|
|
|
end
|
|
|
|
|
|
2019-07-17 00:19:23 +08:00
|
|
|
target 'passKit' do
|
2019-07-16 17:02:09 -07:00
|
|
|
pods
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'pass' do
|
|
|
|
|
pods
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'passExtension' do
|
|
|
|
|
pods
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'passKitTests' do
|
|
|
|
|
pods
|
2019-07-17 00:19:23 +08:00
|
|
|
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
|
2020-09-19 16:22:03 +02:00
|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.2'
|
2019-07-17 00:19:23 +08:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|