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

AIR Android - Limit devices?

Explorer ,
Mar 10, 2015 Mar 10, 2015

Copy link to clipboard

Copied

Hi,

How to make an AIR Android app downloadable for Android 4+ devices only?

I would like to exclude all devices that are running Android 3 and below.

Thank you

TOPICS
Development

Views

266

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
Engaged ,
Mar 10, 2015 Mar 10, 2015

Copy link to clipboard

Copied

LATEST

In the Android section of the app xml you can use the line

<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />

<android>

        <manifestAdditions><![CDATA[

            <manifest android:installLocation="auto">

                <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />

               ....

The values for minSdkVersion tied to Android releases can be found at:

<uses-sdk> | Android Developers

within the uses-sdk documentation

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