Reputation: 1557
I know that you can limit apps based on iOS version, but is there a way to limit them based on the device? For some reason, my app locks on an iPad 1, but works fine on iPad 2. I intend to fix this, but otherwise it's ready for release and I would like to release it now. Any help would be appreciated.
Upvotes: 1
Views: 510
Reputation: 3009
Yes. You can use the Info.plist key UIRequiredDeviceCapabilities
to restrict the app to devices that support your hardware requirements. In particular, you can limit your app to running only on devices that have a camera. That will rule out the original iPad.
See the Info.plist docs for all of the things you can require.
Of course, the best solution you already know -- to fix the bugs.
Upvotes: 1