How to restrict the iOS app in the store to 4S and iPad 3 only

My iOS app is a hungry processor. It works great on the iPhone 4S and even better on the new iPad. But on iPhone 4, it provides a bad user interface, and I want to somehow disable something under 4S to download my application from the app store. I am already forced to require amrv7, but this means that anyone with 3GS or more can install it. I would like to have a mandatory requirement for a dual-core Cortex A9, since I use two streams to get the speed I need.

http://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW3 does not seem to list what I want . The closest is bluetooth-le , which, I believe, exists only on newer devices. Any better ideas?

+6
source share
3 answers

Apple seems to be discouraged by applications that are so hungry on the processor that they do not work on devices under the top that are still sold. Thus, when choosing Bluetooth or the front camera, if your application does not need them, most likely the application will be rejected.

The best bet may be to improve the performance of your application or to edit the description of your application with decent performance requirements markedly listed, and there are poor ratings and reviews from customers who cannot read.

+3
source

Not sure if there is a way to exclude iPhone 4, including 4S, but you can only configure the application on iPhone 4 and later, and iPad 2 and later, requiring a front-facing-camera in your Info.plist.

Of course, such a change can only be made in the new application, since Apple prohibits limiting the hardware requirements for the application already in the App Store.

+4
source

Perhaps try limiting the new version of iOS, which is not supported on older devices. However, this will not work for all devices. When you download the yust application, write a note, which is a demanding application. and should only be used on new devices

+1
source

Source: https://habr.com/ru/post/919713/


All Articles