From 9899468884b77a02dfab723088bba7044b557019 Mon Sep 17 00:00:00 2001 From: Andy Wickham Date: Tue, 31 May 2022 16:29:24 -0700 Subject: [PATCH] Enables keyboard option by default. This just enables the setting for this feature. The default value of the setting itself is still false. Bug: 231433168 Test: Manually verified the option worked as expected, including showing the user education when typing directly in All Apps without tapping the QSB. Also verified previous features like the snackbar to enable keyboard by default worked as before. Change-Id: If423ae49436d1bf71579d52a99aea5ca3f2407dc --- src/com/android/launcher3/config/FeatureFlags.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher3/config/FeatureFlags.java b/src/com/android/launcher3/config/FeatureFlags.java index 9775b878cc..838564d935 100644 --- a/src/com/android/launcher3/config/FeatureFlags.java +++ b/src/com/android/launcher3/config/FeatureFlags.java @@ -265,8 +265,8 @@ public final class FeatureFlags { public static final BooleanFlag ENABLE_ONE_SEARCH_MOTION = new DeviceFlag( "ENABLE_ONE_SEARCH_MOTION", true, "Enables animations in OneSearch."); - public static final BooleanFlag ENABLE_SHOW_KEYBOARD_IN_ALL_APPS = getDebugFlag( - "ENABLE_SHOW_KEYBOARD_IN_ALL_APPS", false, + public static final BooleanFlag ENABLE_SHOW_KEYBOARD_IN_ALL_APPS = new DeviceFlag( + "ENABLE_SHOW_KEYBOARD_IN_ALL_APPS", true, "Enable option to show keyboard when going to all-apps"); public static final BooleanFlag USE_LOCAL_ICON_OVERRIDES = getDebugFlag(