I Need to change the processor used for my App in ARM64

I would like to change the processor of my app which today is armv7 and arm64 to only arm64 how can I do it if my app is already published on the store

Replies

The general strategy here is:

  1. Raise your app’s deployment target to a version of iOS that only runs on arm64.

  2. If your project is configured in the standard way, Xcode will build your app with only the arm64 architecture. If it doesn’t do that, check for any weird customisations of your architecture build settings.

  3. Submit that as a new version of your app to the App Store.

For step 2, a good option is:

  1. Create a new test project with Xcode.

  2. Search for all the build settings with architecture in the name.

  3. Compare the values from the test project to values in your main project.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"