From db54e85268da34a24e585f95396d4820b2d30242 Mon Sep 17 00:00:00 2001 From: Alejandro Nijamkin Date: Sat, 13 Aug 2022 09:36:39 -0700 Subject: Enables flag for modern architecture in KBAV. The KeyguardBottomAreaView (KBAV) has been refactored to a new, modern architecture. This CL flips the flag to turn that on. The plan is to let it soak for a while with Droidfooders and fix any bugs they find. Once we are happy, we will delete this flag and all the now-dead code protected behind it. Bug: 235403546 Test: the modern architecture is used even when I turn off the teamfood flag in the flag flipping app. Change-Id: I36b4c6d28e658d7dc55ec03f448a8ca728855f94 --- packages/SystemUI/src/com/android/systemui/flags/Flags.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.java b/packages/SystemUI/src/com/android/systemui/flags/Flags.java index a65aed23f5b3..3029f3c8da58 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.java +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.java @@ -92,7 +92,7 @@ public class Flags { * Whether the KeyguardBottomArea(View|Controller) should use the modern architecture or the old * one. */ - public static final UnreleasedFlag MODERN_BOTTOM_AREA = new UnreleasedFlag(206, true); + public static final ReleasedFlag MODERN_BOTTOM_AREA = new ReleasedFlag(206, true); public static final UnreleasedFlag LOCKSCREEN_CUSTOM_CLOCKS = new UnreleasedFlag(207); -- cgit v1.2.3-59-g8ed1b