Reputation: 71
I have received a rejected from Apple Store. I did not have a UIRequiredDeviceCapabilities set.My app
can both install on the iphone and ipad.So I feel uncertain what can i do.
We were unable to install the app on iPhone and iPad. The UIRequiredDeviceCapabilities key in the Info.plist is set in such a way that the app will not install.
Next Steps
To resolve this issue, please check the UIRequiredDeviceCapabilities key to verify that it contains only the attributes required for your app features or the attributes that must not be present on the device. Attributes specified by a dictionary should be set to true if they are required and false if they must not be present on the device.
Upvotes: 0
Views: 3743
Reputation: 2778
Check your info.plist of your target.
If you are supporting you project for iPhone 4s and onward then include armv7 and Armv7s supported from iPhone 5, 5c, 5S, iPod touch-5, iPad-4, iPad Air. Armv7s designed for A6 processor. Supporting from IOS6+. It's also support for 64-bit coding but processing get slow in those devices with armv7s instruction set.. Arm64 devices are from Iphone 5s, iPad Air. That's related to A7 Processor
Upvotes: 0