I\'m using a barcode scanner library within my iOS project that currently only supports iPhone 4 devices. Is it possible to restrict the application submission so that only
You could try something like:
UIRequiredDeviceCapabilities gyroscope
This will restrict it to only iPhones that have the gyroscope, which is iPhone4 and beyond.
Not sure this is the best way, but it should work.
Hope this helps!