Restrict to certain iOS target devices for App Store submission

Actually, there might be a way:

Adding an item to UIRequiredDeviceCapabilities in your Info.plist with the requirement of bluetooth-le should limit your app to iPhone 4S/5 and iPad 3, 4 and mini.
You could also throw in a camera-flash requirement to limit the app to iPhones only, should you need that.

See DeviceCompatibilityMatrix

Leave a Comment