Skip to main content
Participating Frequently
April 27, 2014
Answered

IOS 7 only Support

  • April 27, 2014
  • 1 reply
  • 539 views

I'm looking for a way to only support iOS 7 on my app and not iOS 4.3. After my game is published on the app store it always shows support for iOS 4.3. I would like to only support iOS 7 (or even 6) and higher. Please help!!!

This topic has been closed for replies.
Correct answer Colin Holgate

You can put the version you need into the InfoAdditions part of the app descriptor XML. Add this to it:

<key>MinimumOSVersion</key><string>7.0</string>

1 reply

Colin Holgate
Colin HolgateCorrect answer
Inspiring
April 27, 2014

You can put the version you need into the InfoAdditions part of the app descriptor XML. Add this to it:

<key>MinimumOSVersion</key><string>7.0</string>

TKJSAuthor
Participating Frequently
April 27, 2014

That is exactly what I wanted! Thank You!