From 14428c8d5b068fd59a0ae03a2a8a20d3ffae86a2 Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Wed, 25 Oct 2023 08:27:35 -0700 Subject: [PATCH] Update the `launchMode` for the `GodotApp` activity to allow other activities to be part of the same task For details, see https://developer.android.com/guide/topics/manifest/activity-element#lmode --- platform/android/java/app/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/java/app/AndroidManifest.xml b/platform/android/java/app/AndroidManifest.xml index 56d403a263d..079f629b128 100644 --- a/platform/android/java/app/AndroidManifest.xml +++ b/platform/android/java/app/AndroidManifest.xml @@ -35,7 +35,7 @@ android:name=".GodotApp" android:label="@string/godot_project_name_string" android:theme="@style/GodotAppSplashTheme" - android:launchMode="singleInstance" + android:launchMode="singleInstancePerTask" android:excludeFromRecents="false" android:exported="true" android:screenOrientation="landscape"