Limit the iphone app to install only on devices with Retina Display (iphone 4 / 4S)

I am developing one application for iphone. But I want to limit my application to install it only on a Retina Display device. So my solution is to add the UIRequiredDeviceCapabilities key to the plist file with the front camera required to install my application only on devices with Retina display.

So my question is that Apple rejects my application, since my application does not use the front camera, but I added it to UIRequiredDeviceCapabilities? Also, does anyone have any other solution to restrict installation on devices with a Retina display?

Any help is appreciated. Thanks.

+4
source share
1 answer

There is no direct requirement to install only on Retina devices, but for iPhone / iPod Touch with a retina, you can set the front-facing-camera requirement for front-facing-camera dictionary. The front camera is only available on iPhone 4 or later and iPod Touch 4th generation or later

PS: It looks like a hack if your application does not work with this camera, so I'm not sure about viewing the process.

0
source

All Articles