Skip to content

Instantly share code, notes, and snippets.

@cspickert
Created January 15, 2014 21:27
Show Gist options
  • Save cspickert/8445022 to your computer and use it in GitHub Desktop.
Save cspickert/8445022 to your computer and use it in GitHub Desktop.
# Remove 64-bit build architecture from Pods targets
post_install do |installer|
installer.project.targets.each do |target|
target.build_configurations.each do |configuration|
target.build_settings(configuration.name).delete 'ARCHS'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment