summaryrefslogtreecommitdiffstats
path: root/platform/android/java/editor
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2023-11-03 07:37:46 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2023-11-03 07:37:46 -0700
commitfcb07ff8dc607080d3095baa5f34b91043447127 (patch)
treee24c470930129c75845c07602d994dcbb1fb75a1 /platform/android/java/editor
parent5ee983188de97ae027f9b9c1443438063f708a7e (diff)
downloadredot-engine-fcb07ff8dc607080d3095baa5f34b91043447127.tar.gz
Fix Android editor crash issue
Fix issue causing the Android editor to crash when pressing back from a running project
Diffstat (limited to 'platform/android/java/editor')
-rw-r--r--platform/android/java/editor/src/main/AndroidManifest.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/android/java/editor/src/main/AndroidManifest.xml b/platform/android/java/editor/src/main/AndroidManifest.xml
index cb89d6e1b0..1405b6c737 100644
--- a/platform/android/java/editor/src/main/AndroidManifest.xml
+++ b/platform/android/java/editor/src/main/AndroidManifest.xml
@@ -35,7 +35,7 @@
<activity
android:name=".GodotProjectManager"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
- android:launchMode="singleInstance"
+ android:launchMode="singleTask"
android:screenOrientation="userLandscape"
android:exported="true"
android:process=":GodotProjectManager">
@@ -54,7 +54,7 @@
android:name=".GodotEditor"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
android:process=":GodotEditor"
- android:launchMode="singleInstance"
+ android:launchMode="singleTask"
android:screenOrientation="userLandscape"
android:exported="false">
<layout android:defaultHeight="@dimen/editor_default_window_height"
@@ -66,7 +66,7 @@
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
android:label="@string/godot_project_name_string"
android:process=":GodotGame"
- android:launchMode="singleInstance"
+ android:launchMode="singleTask"
android:exported="false"
android:screenOrientation="userLandscape">
<layout android:defaultHeight="@dimen/editor_default_window_height"