From 07bc19272005ac9f11c467502cba05963046f59e Mon Sep 17 00:00:00 2001 From: Alejandro Nijamkin Date: Thu, 15 Dec 2022 15:22:02 -0800 Subject: Defines flag for ravemped WPP UI (1/5). This flag is owned in System UI and served to Wallpaper Picker (WPP) through the existing content provider for quick affordances. Bug: 262780448 Test: manually made sure that I can read the flag value in wallpaper picker and its value matches whatever I set the flag to. Change-Id: I7032669d4a954465485a570874f5a964e5e819da Merged-In: I7032669d4a954465485a570874f5a964e5e819da --- packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index e5077365fb8f..4a65c4c7d3ff 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -176,6 +176,10 @@ object Flags { @JvmField val LIGHT_REVEAL_MIGRATION = unreleasedFlag(218, "light_reveal_migration", teamfood = false) + // TODO(b/262780002): Tracking Bug + @JvmField + val REVAMPED_WALLPAPER_UI = unreleasedFlag(222, "revamped_wallpaper_ui", teamfood = false) + /** Flag to control the migration of face auth to modern architecture. */ // TODO(b/262838215): Tracking bug @JvmField val FACE_AUTH_REFACTOR = unreleasedFlag(220, "face_auth_refactor") -- cgit v1.2.3-59-g8ed1b