diff --git a/apps/android/app/src/main/AndroidManifest.xml b/apps/android/app/src/main/AndroidManifest.xml
index 9c34cbf7a..8c31ed4e5 100644
--- a/apps/android/app/src/main/AndroidManifest.xml
+++ b/apps/android/app/src/main/AndroidManifest.xml
@@ -102,7 +102,9 @@
+ android:showOnLockScreen="true"
+ android:exported="false"
+ android:launchMode="singleTask"/>
= Build.VERSION_CODES.R // Android 11 or above
+ || isTaskRoot // there are still other tasks after we reach the main (home) activity
+ ) {
+ // https://medium.com/mobile-app-development-publication/the-risk-of-android-strandhogg-security-issue-and-how-it-can-be-mitigated-80d2ddb4af06
+ super.onBackPressed()
+ }
+
if (!onBackPressedDispatcher.hasEnabledCallbacks() && vm.chatModel.controller.appPrefs.performLA.get()) {
// When pressed Back and there is no one wants to process the back event, clear auth state to force re-auth on launch
clearAuthState()