So I want to submit an arm64-only app to the store.
To do this, I tried the following:
- Set Valid Architectures to 'arm64'
- Add 'arm64' to UIRequiredDeviceCapabilities
When submitting to the app store, XCode organizer returns with the error:
UIRequiredDeviceCapabilities contains the value 'arm64' which is incompatible with the MinimumOSVersion value of '8.3.'"
I feel this is incorrect behaviour by XCode Organizer.
An indirect way of only running on 64bit iOS devices, is to require OpenGLES3 capability.
However, this requires you to ship an arm64 binary, and also an armv7 binary, which will never be used by any customer ever.
This seems very inelegant.
Bram