2018-06-07 15:51:06 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-08-27 09:16:33 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0"
|
|
|
|
android:installLocation="auto" >
|
|
|
|
|
|
|
|
<supports-screens
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true" />
|
|
|
|
|
|
|
|
<uses-feature
|
2022-11-11 23:30:06 +00:00
|
|
|
android:glEsVersion="0x00030000"
|
2019-08-27 09:16:33 +00:00
|
|
|
android:required="true" />
|
|
|
|
|
2019-10-18 16:59:04 +00:00
|
|
|
<application
|
|
|
|
android:label="@string/godot_project_name_string"
|
|
|
|
android:allowBackup="false"
|
2021-06-30 16:44:33 +00:00
|
|
|
android:icon="@mipmap/icon"
|
2023-01-01 02:19:22 +00:00
|
|
|
android:appCategory="game"
|
2021-06-30 16:44:33 +00:00
|
|
|
android:isGame="true"
|
2021-08-13 05:16:14 +00:00
|
|
|
android:hasFragileUserData="false"
|
2021-07-11 01:39:31 +00:00
|
|
|
android:requestLegacyExternalStorage="false"
|
2021-06-30 16:44:33 +00:00
|
|
|
tools:ignore="GoogleAppIndexingWarning" >
|
2024-05-09 17:22:26 +00:00
|
|
|
<profileable
|
|
|
|
android:shell="true"
|
|
|
|
android:enabled="true"
|
|
|
|
tools:targetApi="29" />
|
2019-04-07 18:46:52 +00:00
|
|
|
|
2021-02-24 11:49:00 +00:00
|
|
|
<!-- Records the version of the Godot editor used for building -->
|
|
|
|
<meta-data
|
|
|
|
android:name="org.godotengine.editor.version"
|
|
|
|
android:value="${godotEditorVersion}" />
|
|
|
|
|
2019-08-27 09:16:33 +00:00
|
|
|
<activity
|
2019-09-03 00:31:51 +00:00
|
|
|
android:name=".GodotApp"
|
2019-08-27 09:16:33 +00:00
|
|
|
android:label="@string/godot_project_name_string"
|
2020-08-19 22:38:50 +00:00
|
|
|
android:theme="@style/GodotAppSplashTheme"
|
2023-10-25 15:27:35 +00:00
|
|
|
android:launchMode="singleInstancePerTask"
|
2021-12-09 16:49:32 +00:00
|
|
|
android:excludeFromRecents="false"
|
2022-06-22 02:46:31 +00:00
|
|
|
android:exported="true"
|
2019-08-27 09:16:33 +00:00
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
|
|
|
|
android:resizeableActivity="false"
|
|
|
|
tools:ignore="UnusedAttribute" >
|
2018-06-07 15:51:06 +00:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2023-08-12 22:41:05 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2018-06-07 15:51:06 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|