Fix Android editor crash issue

Fix issue causing the Android editor to crash when pressing back from a running project
This commit is contained in:
Fredia Huya-Kouadio 2023-11-03 07:54:04 -07:00 committed by Relintai
parent 7000a13bda
commit 8452eb6c97

View File

@ -34,7 +34,7 @@
<activity
android:name=".PandemoniumProjectManager"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
android:launchMode="singleInstance"
android:launchMode="singleTask"
android:screenOrientation="userLandscape"
android:exported="true"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
@ -53,7 +53,7 @@
android:name=".PandemoniumEditor"
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
android:process=":PandemoniumEditor"
android:launchMode="singleInstance"
android:launchMode="singleTask"
android:screenOrientation="userLandscape"
android:exported="false"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
@ -66,7 +66,7 @@
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
android:label="@string/pandemonium_project_name_string"
android:process=":PandemoniumGame"
android:launchMode="singleInstance"
android:launchMode="singleTask"
android:exported="false"
android:screenOrientation="userLandscape"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">