Skip to content

Instantly share code, notes, and snippets.

@sdpjswl
Created May 24, 2016 02:36
Show Gist options
  • Save sdpjswl/389a9f2efa24b551dc8940ac93797479 to your computer and use it in GitHub Desktop.
Save sdpjswl/389a9f2efa24b551dc8940ac93797479 to your computer and use it in GitHub Desktop.
Disable bitcode in Podfile
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