diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-04 11:17:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 11:17:24 +0200 |
commit | 10d9e479491c25a350a8ed191987dd36ed43c073 (patch) | |
tree | 56c54dfc8053f2ad1e0125cd632dba19fdf9cb9c /platform/android/java/editor | |
parent | 91d617718717d0ff1f00b477b8a128b694476756 (diff) | |
parent | 3f299e92551e79c95970b1250b18f22374391706 (diff) |
Merge pull request #59861 from m4gr3d/enable_resizable_main
Diffstat (limited to 'platform/android/java/editor')
-rw-r--r-- | platform/android/java/editor/src/main/AndroidManifest.xml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/platform/android/java/editor/src/main/AndroidManifest.xml b/platform/android/java/editor/src/main/AndroidManifest.xml index 0708ffa32f..bae075d929 100644 --- a/platform/android/java/editor/src/main/AndroidManifest.xml +++ b/platform/android/java/editor/src/main/AndroidManifest.xml @@ -29,8 +29,7 @@ android:name=".GodotProjectManager" android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode" android:launchMode="singleTask" - android:resizeableActivity="false" - android:screenOrientation="landscape" + android:screenOrientation="userLandscape" android:exported="true" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" android:process=":GodotProjectManager"> @@ -46,8 +45,7 @@ android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode" android:process=":GodotEditor" android:launchMode="singleTask" - android:resizeableActivity="false" - android:screenOrientation="landscape" + android:screenOrientation="userLandscape" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> </activity> @@ -57,8 +55,7 @@ android:label="@string/godot_project_name_string" android:process=":GodotGame" android:launchMode="singleTask" - android:resizeableActivity="false" - android:screenOrientation="landscape" + android:screenOrientation="userLandscape" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> </activity> |