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
This commit is contained in:
Alejandro Nijamkin
2022-08-13 09:36:39 -07:00
parent d8ebffe476
commit db54e85268

View File

@@ -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);