From 32828ecefd74dcee46745e11a700cb46b94ce63b Mon Sep 17 00:00:00 2001 From: Federico Baron Date: Wed, 30 Nov 2022 16:40:16 -0800 Subject: [PATCH] Set the ENABLE_DOWNLOAD_APP_UX_V2 flag to true We will split the feature into two parts. The part that is guarded under ENABLE_DOWNLOAD_APP_UX_V2 is feature complete (everything except for the skeleton motion). The skeleton motion will be guarded by another flag (ENABLE_DOWNLOAD_APP_UX_V3). This is so that we have an improvement over the current version of restore icon treatment prior to release that we can start testing Bug: 254858049 Test: Download an app and check how it looks when pending/donwloading/installing Change-Id: I711f9d8acdb40689e71782acff6ef43907bb7435 --- 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 3e1c0eb165..a3e71818c1 100644 --- a/src/com/android/launcher3/config/FeatureFlags.java +++ b/src/com/android/launcher3/config/FeatureFlags.java @@ -334,8 +334,8 @@ public final class FeatureFlags { "HOME_GARDENING_WORKSPACE_BUTTONS", false, "Change workspace edit buttons to reflect home gardening"); - public static final BooleanFlag ENABLE_DOWNLOAD_APP_UX_V2 = getDebugFlag( - "ENABLE_DOWNLOAD_APP_UX_V2", false, "Updates the download app UX" + public static final BooleanFlag ENABLE_DOWNLOAD_APP_UX_V2 = new DeviceFlag( + "ENABLE_DOWNLOAD_APP_UX_V2", true, "Updates the download app UX" + " to have better visuals"); public static final BooleanFlag ENABLE_TASKBAR_REVISED_THRESHOLDS = getDebugFlag(