Path: blob/master/platform/android/java/app/src/main/AndroidManifest.xml
21066 views
<?xml version="1.0" encoding="utf-8"?>1<manifest xmlns:android="http://schemas.android.com/apk/res/android"2xmlns:tools="http://schemas.android.com/tools"3android:versionCode="1"4android:versionName="1.0"5android:installLocation="auto" >67<supports-screens8android:smallScreens="true"9android:normalScreens="true"10android:largeScreens="true"11android:xlargeScreens="true" />1213<uses-feature14android:glEsVersion="0x00030000"15android:required="true" />1617<application18android:label="@string/godot_project_name_string"19android:allowBackup="false"20android:icon="@mipmap/icon"21android:appCategory="game"22android:isGame="true"23android:hasFragileUserData="false"24android:requestLegacyExternalStorage="false"25tools:ignore="GoogleAppIndexingWarning" >26<profileable27android:shell="true"28android:enabled="true"29tools:targetApi="29" />3031<activity32android:name=".GodotApp"33android:theme="@style/GodotAppSplashTheme"34android:launchMode="singleInstancePerTask"35android:excludeFromRecents="false"36android:exported="false"37android:screenOrientation="landscape"38android:windowSoftInputMode="adjustResize"39android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"40android:resizeableActivity="false"41tools:ignore="UnusedAttribute" />42<activity-alias43android:name=".GodotAppLauncher"44android:targetActivity=".GodotApp"45android:exported="true">46<intent-filter>47<action android:name="android.intent.action.MAIN" />48<category android:name="android.intent.category.DEFAULT" />49<category android:name="android.intent.category.LAUNCHER" />50</intent-filter>51</activity-alias>5253</application>5455</manifest>565758