Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milanpanchal/cf52cdb71cf74698364922f0caad6b7c to your computer and use it in GitHub Desktop.
Save milanpanchal/cf52cdb71cf74698364922f0caad6b7c to your computer and use it in GitHub Desktop.
Xcode 12, building for iOS Simulator, but linking in object file built for iOS, file for architecture arm64
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment