Created
October 16, 2014 12:29
-
-
Save jeffbailey/c189ebb14cebd12ac693 to your computer and use it in GitHub Desktop.
How to build cocoapods library for 32 bit architecture
This file contains 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
# 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)['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