XmasRights
XmasRights

Reputation: 1509

Excluding Specific Devices in iOS (Device Compatibility)

I have an app that is optimised for A8 chips and above. Is there a way to specify this to ensure the compatibility list in the iTunes store is accurate?

Currently the only restriction added to Info.plist is arm64, but there's a few incompatible devices this lets through (http://iossupportmatrix.com)

App Store Compatibility list

Upvotes: 3

Views: 375

Answers (1)

Michael S.
Michael S.

Reputation: 91

You may need to create conditionals based on UIDevice.current.model

Link to the documentation UIDevice

Upvotes: 1

Related Questions