passforios/Podfile

26 lines
668 B
Text
Raw Normal View History

2017-06-28 00:59:44 +08:00
platform :ios, '10.2'
use_frameworks!
target 'passKit' do
2018-04-22 15:07:31 -07:00
pod 'ObjectivePGP', :git => 'https://github.com/krzyzanowskim/ObjectivePGP.git', :tag => '0.10.0'
target 'pass' do
inherit! :search_paths
end
2017-06-15 17:27:02 +08:00
target 'passExtension' do
inherit! :search_paths
end
2017-06-15 06:02:45 +08:00
target 'passKitTests' do
inherit! :search_paths
end
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