Вопрос

I need to restrict my IOS app in only IPAD 1. Other IPADs are ok. It supports IPHONE 4 and above too.

Is there a way?

Это было полезно?

Решение

As you can see here:

App-Related Resources

under the Declaring the Required Device Capabilities section, you can declare UIRequiredDeviceCapabilities in your Info.plist file. It means that you declare hardware that your app requires in order to run. The App Store uses the contents of this key to prevent users from downloading your app onto a device that cannot possibly run it.

In your case, I think you can require the front-facing-camera to exclude the iPad 1gen.

Another way is to set the development target to iOS 6.0 which is not supported on the iPad 1.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top