Path: blob/master/platform/android/java/editor/src/main/AndroidManifest.xml
10286 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<supports-screens6android:largeScreens="true"7android:normalScreens="true"8android:smallScreens="false"9android:xlargeScreens="true" />1011<uses-feature12android:glEsVersion="0x00030000"13android:required="true" />14<uses-feature15android:name="android.hardware.camera"16android:required="false" />1718<uses-permission19android:name="android.permission.MANAGE_EXTERNAL_STORAGE"20tools:ignore="ScopedStorage" />21<uses-permission22android:name="android.permission.WRITE_EXTERNAL_STORAGE"23android:maxSdkVersion="29" />24<uses-permission25android:name="android.permission.READ_EXTERNAL_STORAGE"26android:maxSdkVersion="29" />27<uses-permission android:name="android.permission.INTERNET" />28<uses-permission android:name="android.permission.RECORD_AUDIO" />29<uses-permission android:name="android.permission.VIBRATE" />30<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />31<uses-permission android:name="android.permission.CAMERA" />3233<application34android:allowBackup="false"35android:icon="@mipmap/themed_icon"36android:label="${editorAppName}${editorBuildSuffix}"37android:requestLegacyExternalStorage="true"38android:theme="@style/GodotEditorSplashScreenTheme"39tools:ignore="GoogleAppIndexingWarning">40<profileable41android:shell="true"42android:enabled="true"43tools:targetApi="29" />4445<activity46android:name=".GodotEditor"47android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"48android:exported="true"49android:icon="@mipmap/themed_icon"50android:launchMode="singleTask"51android:screenOrientation="userLandscape">52<layout53android:defaultWidth="@dimen/editor_default_window_width"54android:defaultHeight="@dimen/editor_default_window_height" />5556<intent-filter>57<action android:name="android.intent.action.MAIN" />5859<category android:name="android.intent.category.DEFAULT" />60<category android:name="android.intent.category.LAUNCHER" />61</intent-filter>6263<!-- Intent filter used to intercept hybrid PANEL launch for the current editor project, and route it64properly through the editor 'run' logic (e.g: debugger setup) -->65<intent-filter>66<action android:name="android.intent.action.MAIN" />67<category android:name="android.intent.category.DEFAULT" />68<category android:name="org.godotengine.xr.hybrid.PANEL" />69</intent-filter>7071<!-- Intent filter used to intercept hybrid IMMERSIVE launch for the current editor project, and route it72properly through the editor 'run' logic (e.g: debugger setup) -->73<intent-filter>74<action android:name="android.intent.action.MAIN" />75<category android:name="android.intent.category.DEFAULT" />76<category android:name="org.godotengine.xr.hybrid.IMMERSIVE" />77</intent-filter>78</activity>79<activity80android:name=".GodotGame"81android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"82android:exported="false"83android:icon="@mipmap/ic_play_window"84android:label="@string/godot_game_activity_name"85android:launchMode="singleTask"86android:process=":GodotGame"87android:autoRemoveFromRecents="true"88android:theme="@style/GodotGameTheme"89android:supportsPictureInPicture="true"90android:screenOrientation="userLandscape">91<layout92android:defaultWidth="@dimen/editor_default_window_width"93android:defaultHeight="@dimen/editor_default_window_height" />94</activity>95<activity96android:name=".embed.EmbeddedGodotGame"97android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"98android:exported="false"99android:icon="@mipmap/ic_play_window"100android:label="@string/godot_game_activity_name"101android:theme="@style/GodotEmbeddedGameTheme"102android:taskAffinity=":embed"103android:excludeFromRecents="true"104android:launchMode="singleTask"105android:process=":EmbeddedGodotGame"106android:supportsPictureInPicture="true" />107<activity108android:name=".GodotXRGame"109android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"110android:process=":GodotXRGame"111android:launchMode="singleTask"112android:icon="@mipmap/ic_play_window"113android:label="@string/godot_game_activity_name"114android:exported="false"115android:autoRemoveFromRecents="true"116android:screenOrientation="landscape"117android:resizeableActivity="false"118android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" />119120<!--121We remove this meta-data originating from the vendors plugin as we only need the loader for122now since the project being edited provides its own version of the vendors plugin.123124This needs to be removed once we start implementing the immersive version of the project125manager and editor windows.126-->127<meta-data128android:name="org.godotengine.plugin.v2.GodotOpenXR"129android:value="org.godotengine.openxr.vendors.GodotOpenXR"130tools:node="remove" />131</application>132133</manifest>134135136