Skip to main content
Known Participant
July 30, 2013
Question

Air Android - app.xml manifest

  • July 30, 2013
  • 1 reply
  • 1451 views

Hi,

How to add these Android settings to an Air Andoid app.xml manifest?

<supports-screens android:

                  android:largeScreens="true"

                  android:xlargeScreens="true"/>

I tried it like this, but got an error:

  <android>

    <manifestAdditions>

<![CDATA[

        <manifest android:installLocation="auto">

<uses-permission android:name="android.permission.INTERNET"/>

<uses-sdk android:minSdkVersion="8"/>

<supports-screens android:

                  android:largeScreens="true"

                  android:xlargeScreens="true"/>

]]>

    </manifestAdditions>

  </android>

  Thanks!

This topic has been closed for replies.

1 reply

Adobe Employee
July 31, 2013

Hi,

You can use it as written below:

<android>

        <manifestAdditions><![CDATA[

            <manifest android:installLocation="auto">

                 <uses-permission android:name="android.permission.INTERNET"/>

                 <supports-screens android:largeScreens="true"

                android:xlargeScreens="true"/>

</manifest>

           

        ]]></manifestAdditions>

</android>

Hope it helps.

Regards,

Nimit

Known Participant
July 31, 2013

Thank you Nimit, I was trying to do the exact same thing.

Justin