From 7cf4b40a9777d710a064564dd6e47dee19c278fc Mon Sep 17 00:00:00 2001 From: George Hodulik Date: Thu, 9 May 2019 14:23:23 -0700 Subject: [PATCH] Use strings "home" and "overview" rather than GEL Bug:129421797 Test: Flashed to QP1A.190508.001, installed launcher with change. Observed both home and overview predictions were as expected. Change-Id: I127d489eae382f4cee75afdd6d615d6d7a8227ee --- .../launcher3/appprediction/PredictionUiStateManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/PredictionUiStateManager.java b/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/PredictionUiStateManager.java index 48a163d870..6dad9afe57 100644 --- a/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/PredictionUiStateManager.java +++ b/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/PredictionUiStateManager.java @@ -67,8 +67,8 @@ public class PredictionUiStateManager implements OnGlobalLayoutListener, ItemInf // TODO (b/129421797): Update the client constants public enum Client { - HOME("GEL"), - OVERVIEW("OVERVIEW_GEL"); + HOME("home"), + OVERVIEW("overview"); public final String id;