Limit the app working on iPhone5 only?

2019-07-16 03:12发布

I googled about it but didn't came to any conclusion :

Can I limit my app to work only for iPhone5 device?

**May be something like this in .plist file ** or any other API

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>iPhone5</string>
</array>

Anyhow, if this is achievable then can I bypass through app store approval process ? Since upto my knowledge, it may show the MetaData error if I don't upload the screenshots for iPhone4/4S.

So, simply I would like to have my app running on iPhone5 environment only.Please suggest me proper way for the same.

Thanks,

2条回答
迷人小祖宗
2楼-- · 2019-07-16 03:19

For iPhone 5 set the UIRequiredDeviceCapabilities armv7s (iPhone 5, iPad 4)

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>armv7s</string>
</array>
查看更多
戒情不戒烟
3楼-- · 2019-07-16 03:20

You could drop support for anything other than armv7s.

查看更多
登录 后发表回答