From 3024a0fb1966423547f6b2b49df347cdca425802 Mon Sep 17 00:00:00 2001 From: shaoweishen Date: Tue, 13 Dec 2022 06:45:35 +0000 Subject: [PATCH] [Output Switcher] Add flag for follow up update the flags for 1. routes processing, which will include deduplicate device id and apply application routes listing preference. 2. device status allow checking the flags or status of routes and show corresponded status in the subtext of device. both of flags will only take effect on android U. Test: N/A Bug: 261538825 Change-Id: If1b2134136bef715629de81531f9a3d64812fb42 --- packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index efb513d57db6a..d58743bd259f3 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -449,6 +449,11 @@ object Flags { // TODO(b/261538825): Tracking Bug @JvmField val OUTPUT_SWITCHER_ADVANCED_LAYOUT = unreleasedFlag(2500, "output_switcher_advanced_layout") + @JvmField + val OUTPUT_SWITCHER_ROUTES_PROCESSING = + unreleasedFlag(2501, "output_switcher_routes_processing") + @JvmField + val OUTPUT_SWITCHER_DEVICE_STATUS = unreleasedFlag(2502, "output_switcher_device_status") // TODO(b259590361): Tracking bug val EXPERIMENTAL_FLAG = unreleasedFlag(2, "exp_flag_release")