From cfef04c16e62cba7a902e12d30f848283dc7ba89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=B6lke?= Date: Tue, 18 May 2021 21:45:31 +0200 Subject: [PATCH] Fix single-server sending messages when calling app back via notifications see #3136 (#3145) - set same android launch mode `singleTask` as on master --- android/app/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 440766f18..8c3ab8d18 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -29,7 +29,7 @@ android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:exported="true" android:label="@string/app_name" - android:launchMode="singleTop" + android:launchMode="singleTask" android:windowSoftInputMode="adjustResize">