diff options
| author | 2022-08-13 09:36:39 -0700 | |
|---|---|---|
| committer | 2022-08-17 14:17:13 +0000 | |
| commit | db54e85268da34a24e585f95396d4820b2d30242 (patch) | |
| tree | b0e55d240bfee89072cf9beb610855bcf336d188 | |
| parent | d8ebffe476bcf7766b6d3eb90910b09b5021143e (diff) | |
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
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/flags/Flags.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); |