Created
June 30, 2016 03:45
-
-
Save at-daonguyen/52287dac4248784278b104a9776a87d6 to your computer and use it in GitHub Desktop.
Disable BITCODE for all Pods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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