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!
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
Copy link to clipboard
Copied
Thank you Nimit, I was trying to do the exact same thing.
Justin
Copy link to clipboard
Copied
Is there any way to use android:name="android.support.multidex.MultiDexApplication" in manifestAdditions? I need to enable multidexing for my app.