I had an app rejected with the following:
Guideline 2.3 - Performance - Accurate Metadata
We were unable to install the app on iPad. The UIRequiredDeviceCapabilities key in the Info.plist is set in such a way that the app will not install on an iPad .
In the info.plist it is:
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
This is the same as all my other apps that have been approved. I can install it on an iPad.
What should the UIRequiredDeviceCapabilities be?