remove Pods related configurations

This commit is contained in:
Mingshen Sun 2019-06-08 14:56:29 -07:00
parent d9a3cf4882
commit 0d4370ee40
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
3 changed files with 21 additions and 177 deletions

24
Podfile
View file

@ -1,24 +0,0 @@
platform :ios, '10.2'
use_frameworks!
target 'passKit' do
target 'pass' do
inherit! :search_paths
end
target 'passExtension' do
inherit! :search_paths
end
target 'passKitTests' do
inherit! :search_paths
end
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