Reputation: 3
The game, we are about to submit to apple, requires much memory and GPU power. It's almost unplayable on iPad 1, so we decided to release it for all iPads excluding first generation. How do I set up the project to be shown in AppStore as not supporting iPad 1?
The solution, I came up with, is to set UIRequiredDeviceCapabilities: gyroscope in info.plist file. But I still have some questions about it:
Thanks in advance.
Upvotes: 0
Views: 241
Reputation: 6187
You can set your deployment target to iOS 6, which is supported only by the iPad 2 and later.
Upvotes: 2
Reputation: 33177
A common pattern is to also require a camera, which the first iPad lacked.
Multiple applications have done this, and it doesn't appear to be a review criteria, though your mileage may vary.
Upvotes: 1