diff options
| author | 2023-01-10 22:12:55 +0000 | |
|---|---|---|
| committer | 2023-01-10 22:12:55 +0000 | |
| commit | 1ef209d736679f29d8f4e471548a63d25dd3c8df (patch) | |
| tree | 20a74e487cc950f873661da315092d5ff9c023e2 | |
| parent | 3a1eabc9bb6fcf64ff920b7326ecdc388dde650e (diff) | |
[SB Refactor] Enable the new pipeline backend for teamfood.
The icons will still be derived from the old pipeline, but this will
turn on the new pipeline in the background to help us pre-emptively
catch any crashes.
Bug: 238425913
Test: manual: verified flags on by default
Change-Id: I52c850a708e0b11cb4c0141dfd267c7bc6c14cc2
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index 7c4fa6c6d27e..79fcdc741001 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -247,10 +247,11 @@ object Flags { // TODO(b/256614751): Tracking Bug val NEW_STATUS_BAR_MOBILE_ICONS_BACKEND = - unreleasedFlag(608, "new_status_bar_mobile_icons_backend") + unreleasedFlag(608, "new_status_bar_mobile_icons_backend", teamfood = true) // TODO(b/256613548): Tracking Bug - val NEW_STATUS_BAR_WIFI_ICON_BACKEND = unreleasedFlag(609, "new_status_bar_wifi_icon_backend") + val NEW_STATUS_BAR_WIFI_ICON_BACKEND = + unreleasedFlag(609, "new_status_bar_wifi_icon_backend", teamfood = true) // TODO(b/256623670): Tracking Bug @JvmField |