axmol/tests/fairygui-tests/proj.android/app/AndroidManifest.xml

36 lines
1.2 KiB
XML
Raw Normal View History

2020-08-04 13:15:02 +08:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2022-08-08 18:02:17 +08:00
package="org.axys1.fairygui_tests"
2020-08-04 13:15:02 +08:00
android:installLocation="auto">
<uses-feature android:glEsVersion="0x00020000" />
<application
android:usesCleartextTraffic="true"
android:label="@string/app_name"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher">
2022-08-08 18:02:17 +08:00
<!-- Tell AxysActivity the name of our .so -->
2020-08-04 13:15:02 +08:00
<meta-data android:name="android.app.lib_name"
android:value="fairygui_tests" />
<activity
android:name=".AppActivity"
android:screenOrientation="landscape"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:launchMode="singleTask"
android:taskAffinity=""
android:exported="true" >
2020-08-04 13:15:02 +08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>