Path: blob/master/platform/android/java/app/AndroidManifest.xml
10279 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:label="@string/godot_project_name_string"34android:theme="@style/GodotAppSplashTheme"35android:launchMode="singleInstancePerTask"36android:excludeFromRecents="false"37android:exported="true"38android:screenOrientation="landscape"39android:windowSoftInputMode="adjustResize"40android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"41android:resizeableActivity="false"42tools:ignore="UnusedAttribute" >4344<intent-filter>45<action android:name="android.intent.action.MAIN" />46<category android:name="android.intent.category.DEFAULT" />47<category android:name="android.intent.category.LAUNCHER" />48</intent-filter>49</activity>5051</application>5253</manifest>545556