2022-06-24 16:23:26 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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-10-01 16:24:52 +08:00
|
|
|
<!-- Tell AxmolActivity the name of our .so -->
|
2022-06-24 16:23:26 +08:00
|
|
|
<meta-data android:name="android.app.lib_name"
|
2023-12-11 23:28:21 +08:00
|
|
|
android:value="live2d-tests" />
|
2022-06-24 16:23:26 +08:00
|
|
|
|
|
|
|
<activity
|
2022-10-01 16:24:52 +08:00
|
|
|
android:name="org.axmol.cpp.AppActivity"
|
2022-06-24 16:23:26 +08:00
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:launchMode="singleTask"
|
2022-08-06 19:26:44 +08:00
|
|
|
android:taskAffinity=""
|
|
|
|
android:exported="true" >
|
2022-06-24 16:23:26 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|