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
I Need to change the processor used for my App in ARM64
The general strategy here is:
-
Raise your app’s deployment target to a version of iOS that only runs on
arm64
. -
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. -
Submit that as a new version of your app to the App Store.
For step 2, a good option is:
-
Create a new test project with Xcode.
-
Search for all the build settings with architecture in the name.
-
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"