• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Exclude iPad1 [URGENT]

Engaged ,
Nov 05, 2012 Nov 05, 2012

Copy link to clipboard

Copied

I am happy to say Apple just approved my app that I've been working on for months :

I compiled with iOS6 SDK thinking that this would stop iPad 1's from being able to install it as iPad 1 doesn't support iOS6.

This didn't work. For some reason any iPad can download my app. 

How can I get around this. My app isn't functional on iPad 1 ;).

Thanks

TOPICS
Development

Views

844

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 05, 2012 Nov 05, 2012

Copy link to clipboard

Copied

LATEST

You can require that a specific minimum version of iOS be on the device by modifying your app config xml file and adding the MinimumOSVersion key.  For Example:

<iPhone>

        <InfoAdditions><![CDATA[

                              <key>UIDeviceFamily</key>

                              <array>

                                        <string>1</string>

                                        <string>2</string>

                              </array>

                              <key>MinimumOSVersion</key>

                              <string>6.0</string>

                    ]]></InfoAdditions>

        <requestedDisplayResolution>high</requestedDisplayResolution>

    </iPhone>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines