Skip to main content
Infin8
Inspiring
February 22, 2016
Answered

How to set minimum Android version for AIR app?

  • February 22, 2016
  • 2 replies
  • 466 views

Does anyone know if this is possible (and if so how to achieve)?

I know it's possible on iOS using the XML below but I can't seem to find an Android compatible version.

<iPhone>

<InfoAdditions><![CDATA[

<key>MinimumOSVersion</key><string>8.0.0</string>]]>

</InfoAdditions>

</iPhone>

This topic has been closed for replies.
Correct answer Lars Laborious

I haven't tried this, but I believe you can set it with android:minSdkVersion inside the manifest nodes, like so:

  <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" />

2 replies

Infin8
Infin8Author
Inspiring
February 22, 2016

Thanks Lars, that does seem to do the trick.

Lars Laborious
Lars LaboriousCorrect answer
Legend
February 22, 2016

I haven't tried this, but I believe you can set it with android:minSdkVersion inside the manifest nodes, like so:

  <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" />