After uploading updated version to AppStore I get:
This bundle is invalid - The key UIRequiredDeviceCapabilities in the Info.plist may not contain values that would prevent this application from running on devices that were supported by previous versions.
Refer to QA1623 for additional information: Documentation Archive
I updated my game from 4.15.3 to 4.19.2, and I see in the IPA file the plist contains :
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
<string>metal</string>
</array>
I am unsure what to do now?
In the 4.15.3 there was an option to support armv7 and arm64, they were both checked by default, but now there is no such option anymore.
And in the 4.15.3 plist I see this:
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
<string>opengles-2</string>
</array>
What should I do?