2017-06-28 00:59:44 +08:00
|
|
|
platform :ios, '10.2'
|
2017-08-12 15:12:33 +08:00
|
|
|
use_frameworks!
|
2017-06-13 11:42:49 +08:00
|
|
|
|
2017-06-13 16:44:41 +08:00
|
|
|
target 'passKit' do
|
2018-04-22 15:07:31 -07:00
|
|
|
pod 'ObjectivePGP', :git => 'https://github.com/krzyzanowskim/ObjectivePGP.git', :tag => '0.10.0'
|
2017-06-13 16:44:41 +08:00
|
|
|
target 'pass' do
|
|
|
|
|
inherit! :search_paths
|
|
|
|
|
end
|
2017-06-15 17:27:02 +08:00
|
|
|
target 'passExtension' do
|
2017-06-13 16:44:41 +08:00
|
|
|
inherit! :search_paths
|
|
|
|
|
end
|
2017-06-15 06:02:45 +08:00
|
|
|
target 'passKitTests' do
|
|
|
|
|
inherit! :search_paths
|
|
|
|
|
end
|
2017-01-22 01:42:36 +08:00
|
|
|
end
|
2017-09-24 14:18:49 +08:00
|
|
|
|
|
|
|
|
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
|