Lee Maguire
Lee Maguire

Reputation: 3

How do i submit a iPhone 4 only app to the App Store?

How do i submit a iPhone 4 only app to the App Store? As my app uses gyroscope functionality and Apple states that every app must run on iPad.Is there a way around this?

Thanks, Lee

Upvotes: 0

Views: 613

Answers (3)

Andrew Ebling
Andrew Ebling

Reputation: 10283

Don't forget to consider the possibility a gyroscope may be added to the next iPad, so don't absolutely rely on the "gyroscope" value for "UIRequiredDeviceCapabilities" otherwise you may come unstuck.

Upvotes: 0

donkim
donkim

Reputation: 13137

You'll need to add the following to your plist file:

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>gyroscope</string>
</array>

Having this key will disallow any device without a gyroscope from downloading it.

Hope this helps!

Upvotes: 2

Tom Irving
Tom Irving

Reputation: 10069

Apps don't have to run on the iPad, just as they don't have to run on all versions of the iPhone. Take a look at the UIRequiredDeviceCapabilities key of the info.plist.

You'll need to add a "gyroscrope" key, and set it to YES.

Upvotes: 7

Related Questions