From eb89d146f286eaddcde603cd448ed21587cc1e0d Mon Sep 17 00:00:00 2001 From: Adam Bookatz Date: Thu, 24 Feb 2022 16:45:28 -0800 Subject: [PATCH] Fallback Home doesn't restart on keyboard change Fallback Home gets launched multiple times due to CONFIG_KEYBOARD_HIDDEN, which is irrelevant for it. So we mark the activity to not be restarted on this config change. Test: manual Bug: 215439232 Change-Id: I558091979840a6b664e39f6b8bd22957d1b2b729 --- AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 0279eec6987..5877b132f92 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2885,7 +2885,8 @@ android:screenOrientation="nosensor" android:taskAffinity="com.android.settings.FallbackHome" android:exported="true" - android:theme="@style/FallbackHome"> + android:theme="@style/FallbackHome" + android:configChanges="keyboardHidden">