Path: blob/master/platform/android/java/editor/src/main/AndroidManifest.xml
20941 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:installLocation="auto">45<queries>6<package android:name="org.godotengine.godot_gradle_build_environment" />7</queries>89<supports-screens10android:largeScreens="true"11android:normalScreens="true"12android:smallScreens="false"13android:xlargeScreens="true" />1415<uses-feature16android:glEsVersion="0x00030000"17android:required="true" />18<uses-feature19android:name="android.hardware.camera"20android:required="false" />2122<uses-permission23android:name="android.permission.MANAGE_EXTERNAL_STORAGE"24tools:ignore="ScopedStorage" />25<uses-permission26android:name="android.permission.WRITE_EXTERNAL_STORAGE"27android:maxSdkVersion="29" />28<uses-permission29android:name="android.permission.READ_EXTERNAL_STORAGE"30android:maxSdkVersion="29" />31<uses-permission android:name="android.permission.INTERNET" />32<uses-permission android:name="android.permission.RECORD_AUDIO" />33<uses-permission android:name="android.permission.VIBRATE" />34<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />35<uses-permission android:name="android.permission.CAMERA" />3637<application38android:allowBackup="false"39android:icon="@mipmap/themed_icon"40android:label="${editorAppName}${editorBuildSuffix}"41android:requestLegacyExternalStorage="true"42android:theme="@style/GodotEditorSplashScreenTheme"43tools:ignore="GoogleAppIndexingWarning">44<profileable45android:shell="true"46android:enabled="true"47tools:targetApi="29" />4849<activity50android:name=".GodotEditor"51android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"52android:exported="false"53android:icon="@mipmap/themed_icon"54android:launchMode="singleTask"55android:screenOrientation="userLandscape">56<layout57android:defaultWidth="@dimen/editor_default_window_width"58android:defaultHeight="@dimen/editor_default_window_height" />5960<!-- Intent filter used to intercept hybrid PANEL launch for the current editor project, and route it61properly through the editor 'run' logic (e.g: debugger setup) -->62<intent-filter>63<action android:name="android.intent.action.MAIN" />64<category android:name="android.intent.category.DEFAULT" />65<category android:name="org.godotengine.xr.hybrid.PANEL" />66</intent-filter>6768<!-- Intent filter used to intercept hybrid IMMERSIVE launch for the current editor project, and route it69properly through the editor 'run' logic (e.g: debugger setup) -->70<intent-filter>71<action android:name="android.intent.action.MAIN" />72<category android:name="android.intent.category.DEFAULT" />73<category android:name="org.godotengine.xr.hybrid.IMMERSIVE" />74</intent-filter>75</activity>76<activity-alias77android:name=".ProjectManager"78android:exported="true"79android:icon="@mipmap/themed_icon"80android:targetActivity=".GodotEditor">81<intent-filter>82<action android:name="android.intent.action.MAIN" />8384<category android:name="android.intent.category.DEFAULT" />85<category android:name="android.intent.category.LAUNCHER" />86</intent-filter>87</activity-alias>88<activity89android:name=".GodotGame"90android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"91android:exported="false"92android:icon="@mipmap/ic_play_window"93android:label="@string/godot_game_activity_name"94android:launchMode="singleTask"95android:process=":GodotGame"96android:autoRemoveFromRecents="true"97android:theme="@style/GodotGameTheme"98android:supportsPictureInPicture="true"99android:screenOrientation="userLandscape">100<layout101android:defaultWidth="@dimen/editor_default_window_width"102android:defaultHeight="@dimen/editor_default_window_height" />103</activity>104<activity105android:name=".embed.EmbeddedGodotGame"106android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"107android:exported="false"108android:icon="@mipmap/ic_play_window"109android:label="@string/godot_game_activity_name"110android:theme="@style/GodotEmbeddedGameTheme"111android:taskAffinity=":embed"112android:excludeFromRecents="true"113android:launchMode="singleTask"114android:process=":EmbeddedGodotGame"115android:supportsPictureInPicture="true" />116<activity117android:name=".GodotXRGame"118android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"119android:process=":GodotXRGame"120android:launchMode="singleTask"121android:taskAffinity=":xr"122android:icon="@mipmap/ic_play_window"123android:label="@string/godot_game_activity_name"124android:exported="false"125android:autoRemoveFromRecents="true"126android:screenOrientation="landscape"127android:resizeableActivity="false"128android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" />129130<!--131We remove this meta-data originating from the vendors plugin as we only need the loader for132now since the project being edited provides its own version of the vendors plugin.133134This needs to be removed once we start implementing the immersive version of the project135manager and editor windows.136-->137<meta-data138android:name="org.godotengine.plugin.v2.GodotOpenXR"139android:value="org.godotengine.openxr.vendors.GodotOpenXR"140tools:node="remove" />141</application>142143</manifest>144145146