• 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 - app.xml manifest

Explorer ,
Jul 30, 2013 Jul 30, 2013

Copy link to clipboard

Copied

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!

TOPICS
Development

Views

1.4K

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
Adobe Employee ,
Jul 31, 2013 Jul 31, 2013

Copy link to clipboard

Copied

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

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
Community Beginner ,
Jul 31, 2013 Jul 31, 2013

Copy link to clipboard

Copied

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

Justin

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
Community Beginner ,
Aug 09, 2016 Aug 09, 2016

Copy link to clipboard

Copied

LATEST

Is there any way to use android:name="android.support.multidex.MultiDexApplication" in manifestAdditions?  I need to enable multidexing for my app.

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