I cant use the 'requires call capability' since it need to be compatible with iPads.
Asked
Active
Viewed 1,004 times
0
-
1What makes it runnable on an iPad but not on an iPod touch? – BoltClock May 12 '11 at 08:12
-
@BoltClock Two words ... The Client – Robert Sep 11 '12 at 10:48
1 Answers
2
iPhone 1G: A-GPS, accelerometer, camera -- --
iPhone 3G: A-GPS, accelerometer, camera -- --
iPhone Simulator: A-GPS, accelerometer -- -- --
iPhone 3GS: A-GPS, accelerometer, camera compass, --
iPhone 4: A-GPS, accelerometer, camera, compass, gyroscope
iPad: A-GPS, accelerometer -- compass, --
iPad 2: A-GPS, accelerometer, camera, compass, gyroscope
iPod Touch 1G: -- accelerometer -- -- --
iPod Touch 2G: -- accelerometer -- -- --
iPod Touch 3G: -- accelerometer -- -- --
iPod Touch 4G: -- accelerometer, camera, -- gyroscope
So try something like
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>gps</string>
<string>location-services</string>
</array>

Jano
- 62,815
- 21
- 164
- 192