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

37 lines
1.3 KiB
XML
Raw Normal View History

<?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.live2d_tests"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:glEsVersion="0x00020000" />
<application
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 -->
<meta-data android:name="android.app.lib_name"
2022-08-02 22:03:54 +08:00
android:value="live2d_tests" />
<activity
2022-08-08 18:02:17 +08:00
android:name="org.axys1.cpp.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" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>