Skip to content

Instantly share code, notes, and snippets.

@stevenhuey
Created March 11, 2014 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenhuey/9490693 to your computer and use it in GitHub Desktop.
Save stevenhuey/9490693 to your computer and use it in GitHub Desktop.
Remove 64-bit build architecture from Pods targets
# Remove 64-bit build architecture from Pods targets
# http://cameronspickert.com/2014/01/20/remove-the-arm64-architecture-from-cocoapods-targets.html
post_install do |installer|
installer.project.targets.each do |target|
target.build_configurations.each do |configuration|
target.build_settings(configuration.name)['ARCHS'] = '$(ARCHS_STANDARD_32_BIT)'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment