Skip to content

Instantly share code, notes, and snippets.

@at-daonguyen
Created June 30, 2016 03:45
Show Gist options
  • Save at-daonguyen/52287dac4248784278b104a9776a87d6 to your computer and use it in GitHub Desktop.
Save at-daonguyen/52287dac4248784278b104a9776a87d6 to your computer and use it in GitHub Desktop.
Disable BITCODE for all Pods
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
platform :ios, '8.0'
use_frameworks!
target 'Example' do
# frameworks
end
# BITCODE bug fix
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment