Reputation: 6585
I have been struggling with this, but is there a way to make the app compatible with ONLY iPhone 4S (or new iPad + iPhone 4S) through info.plist or other means so that users with other iOS device models can not see and download the app on their device?
Upvotes: 4
Views: 1827
Reputation: 170317
Yes, you can. The iPhone 4S and new iPad are the only devices that support Bluetooth 4.0 Low Energy communications. As I describe in this answer, you can add the bluetooth-le
key to your UIRequiredDeviceCapabilities
to prevent installation on every device but the iPhone 4S and new iPad (excepting future iOS devices).
You can see the filter grid for the various devices in the iTunes Connect Developer Guide's Appendix C - Device Compatibility Matrix.
Upvotes: 6