blob: eaa6d07265ff53561c45387ad024090647544f05 [file] [log] [blame]
Ned Burns6d480c32023-08-28 12:12:19 -04001package: "com.android.systemui"
Dave Mankofff6a791e2023-07-31 18:03:34 +00002
3flag {
4 name: "example_flag"
5 namespace: "systemui"
6 description: "An Example Flag"
7 bug: "292511372"
Dave Mankoff818186b2023-10-02 17:31:07 +00008}
9
10flag {
11 name: "sysui_teamfood"
12 namespace: "systemui"
13 description: "Enables all the sysui classic flags that are marked as being in teamfood"
14 bug: "302578396"
15}
Ioana Alexandrufeaaa022023-10-06 11:21:48 +020016
17flag {
Yining Liu9a835c82023-10-31 01:30:23 +000018 name: "notification_async_hybrid_view_inflation"
19 namespace: "systemui"
20 description: "Inflates hybrid (single-line) notification views from the background thread."
21 bug: "217799515"
22}
23
24flag {
Ioana Alexandrufeaaa022023-10-06 11:21:48 +020025 name: "notifications_footer_view_refactor"
26 namespace: "systemui"
27 description: "Enables the refactored version of the footer view in the notification shade "
28 "(containing the \"Clear all\" button). Should not bring any behavior changes"
29 bug: "293167744"
30}
Alexander Roederer74cda602023-10-11 00:24:09 +000031
32flag {
Steve Elliott34edc352023-10-23 13:14:24 -040033 name: "notifications_icon_container_refactor"
34 namespace: "systemui"
35 description: "Enables the refactored version of the notification icon container in StatusBar, "
36 "AOD, and the notification shelf. Should not bring any behavioral changes."
37 bug: "278765923"
38}
39
40flag {
Nick Chameyev8ea0f4c2023-10-20 18:09:50 +010041 name: "notifications_hide_on_display_switch"
42 namespace: "systemui"
43 description: "Temporary hides notifications when folding/unfolding to reduce unfold latency"
44 bug: "293824309"
45}
46
47flag {
Alexander Roederer74cda602023-10-11 00:24:09 +000048 name: "notification_lifetime_extension_refactor"
49 namespace: "systemui"
50 description: "Enables moving notification lifetime extension management from SystemUI to "
51 "Notification Manager Service"
52 bug: "299448097"
53}
Ale Nijamkin2e087362023-10-18 00:29:03 +000054
55flag {
András Kurucz3e88b352023-11-06 13:48:09 +000056 name: "notifications_live_data_store_refactor"
57 namespace: "systemui"
58 description: "Replaces NotifLiveDataStore with ActiveNotificationListRepository, and updates consumers. "
59 "Should not bring any behavior changes."
60 bug: "308623704"
61}
62
63flag {
Andreas Miko644f9502023-12-12 17:40:21 +010064 name: "refactor_get_current_user"
65 namespace: "systemui"
66 description: "KeyguardUpdateMonitor.getCurrentUser() was providing outdated results."
67 bug: "305984787"
68}
69
70flag {
Lyn20c65062023-11-13 20:34:03 +000071 name: "notification_throttle_hun"
72 namespace: "systemui"
73 description: "During notification avalanche, throttle HUNs showing in fast succession."
74 bug: "307288824"
75}
76
77flag {
Jeff DeCew74e8d432023-11-29 19:34:19 +000078 name: "notification_background_tint_optimization"
79 namespace: "systemui"
80 description: "Re-enable the codepath that removed tinting of notifications when the"
81 " standard background color is desired. This was the behavior before we discovered"
82 " a resources threading issue, which we worked around by tinting the notification"
83 " backgrounds and footer buttons."
84 bug: "294347738"
85}
86
87flag {
Ale Nijamkin2e087362023-10-18 00:29:03 +000088 name: "scene_container"
89 namespace: "systemui"
90 description: "Enables the scene container framework go/flexiglass."
91 bug: "283121968"
92}
Julia Tuttle5201be82023-10-30 17:49:30 -040093
94flag {
Brad Hinegardner5ded8022023-11-03 16:57:51 +000095 name: "keyguard_bottom_area_refactor"
96 namespace: "systemui"
97 description: "Bottom area of keyguard refactor move into KeyguardRootView. Includes "
98 "lock icon and others."
99 bug: "290652751"
100}
101
102flag {
Beverly96b3e592023-11-08 15:32:58 +0000103 name: "device_entry_udfps_refactor"
104 namespace: "systemui"
105 description: "Refactoring device entry UDFPS icon to use modern architecture and "
106 "consolidating it with the lock/unlock icon to create a combined DeviceEntryIconView"
107 bug: "279440316"
108}
109
110flag {
Julia Tuttle5201be82023-10-30 17:49:30 -0400111 name: "visual_interruptions_refactor"
112 namespace: "systemui"
113 description: "Enables the refactored version of the code to decide when notifications "
114 "HUN, bubble, pulse, or FSI."
115 bug: "261728888"
116}
Juan Sebastian Martineze95f996b2023-11-01 14:06:47 -0700117
118flag {
119 name: "haptic_brightness_slider"
120 namespace: "systemui"
121 description: "Adds haptic feedback to the brightness slider."
122 bug: "296467915"
123}
Matt Pietal2cfc6842023-11-03 16:41:09 +0000124
125flag {
126 name: "keyguard_shade_migration_nssl"
127 namespace: "systemui"
128 description: "Moves NSSL into a shared element between the notification_panel and "
129 "keyguard_root_view."
130 bug: "278054201"
131}
Fabián Kozynski9385f732023-11-09 12:47:57 -0500132
133flag {
Nicolo' Mazzucato24c5a7c2023-11-20 11:49:17 +0000134 name: "unfold_animation_background_progress"
135 namespace: "systemui"
136 description: "Moves unfold animation progress calculation to a background thread"
137 bug: "277879146"
138}
139
140flag {
Peter Kalauskasfc9ba4a2023-11-13 22:00:33 +0000141 name: "qs_new_pipeline"
142 namespace: "systemui"
143 description: "Use the new pipeline for Quick Settings. Should have no behavior changes."
144 bug: "241772429"
Fabián Kozynski9385f732023-11-09 12:47:57 -0500145}
Peter Kalauskasfc9ba4a2023-11-13 22:00:33 +0000146
147flag {
Anton Potapov10ae1962023-11-13 19:39:59 +0000148 name: "qs_new_tiles"
149 namespace: "systemui"
150 description: "Use the new tiles in the Quick Settings. Should have no behavior changes."
151 bug: "241772429"
152}
153
154flag {
Peter Kalauskasfc9ba4a2023-11-13 22:00:33 +0000155 name: "coroutine_tracing"
156 namespace: "systemui"
157 description: "Adds thread-local data to System UI's global coroutine scopes to "
158 "allow for tracing of coroutine continuations using System UI's tracinglib"
159 bug: "289353932"
Andreas Mikoa6c9dae2023-11-14 14:46:21 +0100160}
161
162flag {
Peter Kalauskas62bf22b2023-12-15 01:44:39 +0000163 name: "edge_back_gesture_handler_thread"
164 namespace: "systemui"
165 description: "Moves the EdgeBackGestureHandler window, which is used for rendering the back "
166 "arrow, to a separate thread. Previously, the EdgeBackGestureHandler window would share "
167 "the main thread with the rest of System UI."
168 bug: "304583132"
169}
170
171flag {
Andreas Mikoa6c9dae2023-11-14 14:46:21 +0100172 name: "new_aod_transition"
173 namespace: "systemui"
174 description: "New LOCKSCREEN <=> AOD transition"
175 bug: "301915812"
Andreas Miko980ef672023-11-14 14:49:31 +0100176}
177
178flag {
179 name: "light_reveal_migration"
180 namespace: "systemui"
181 description: "Move LightRevealScrim to recommended architecture"
182 bug: "281655028"
Beth Thibodeau622c4fe2023-11-17 17:12:04 -0600183}
184
185flag {
Marcelo Arteiro2398ebb2023-11-21 13:38:17 +0000186 name: "theme_overlay_controller_wakefulness_deprecation"
187 namespace: "systemui"
188 description: "Replacing WakefulnessLifecycle by KeyguardTransitionInteractor in "
189 "ThemOverlayController to mitigate flickering when locking the device"
190 bug: "308676488"
191}
192
193flag {
Beth Thibodeau622c4fe2023-11-17 17:12:04 -0600194 name: "media_in_scene_container"
195 namespace: "systemui"
196 description: "Enable media in the scene container framework"
197 bug: "296122467"
198}
Marcelo Arteiro2398ebb2023-11-21 13:38:17 +0000199
Stefan Andonian3f43e1d2023-11-20 22:04:24 +0000200flag {
Chandru S7ec7fd22023-11-30 13:12:25 +0530201 name: "rest_to_unlock"
202 namespace: "systemui"
203 description: "Require prolonged touch for fingerprint authentication"
204 bug: "303672286"
205}
206
207flag {
Stefan Andonian3f43e1d2023-11-20 22:04:24 +0000208 name: "record_issue_qs_tile"
209 namespace: "systemui"
210 description: "Replace Record Trace QS Tile with expanded Record Issue QS Tile"
211 bug: "305049544"
212}
Chandru S7ec7fd22023-11-30 13:12:25 +0530213
Aurélien Pomini7c643452023-09-21 10:06:47 +0000214flag {
Sherry Zhou860c9b92023-11-28 17:56:31 +0000215 name: "migrate_clocks_to_blueprint"
216 namespace: "systemui"
217 description: "Move clock related views from KeyguardStatusView to KeyguardRootView, "
218 "and use modern architecture for lockscreen clocks"
219 bug: "301502635"
220}
221
222flag {
Aurélien Pomini7c643452023-09-21 10:06:47 +0000223 name: "fast_unlock_transition"
224 namespace: "systemui"
225 description: "Faster wallpaper unlock transition"
226 bug: "298186160"
227}
Juan Sebastian Martinezc9ff0572023-12-04 15:39:18 -0800228
229flag {
Nicolo' Mazzucatocd5f25b2023-12-07 10:11:50 +0000230 name: "enable_layout_tracing"
231 namespace: "systemui"
232 description: "Enables detailed traversal slices during measure and layout in perfetto traces"
233 bug: "315274804"
234}
235
236flag {
Juan Sebastian Martinezc9ff0572023-12-04 15:39:18 -0800237 name: "quick_settings_visual_haptics_longpress"
238 namespace: "systemui"
239 description: "Enable special visual and haptic effects for quick settings tiles with long-press actions"
240 bug: "229856884"
241}
Evan Laird3f199372023-11-14 18:32:19 -0500242
243flag {
Aaron Liu688c8232023-12-14 11:55:04 -0800244 name: "switch_user_on_bg"
245 namespace: "systemui"
246 description: "Does user switching on a background thread"
247 bug: "284095720"
248}
249
250flag {
Evan Laird3f199372023-11-14 18:32:19 -0500251 name: "status_bar_static_inout_indicators"
252 namespace: "systemui"
253 description: "(Upstream request) Always show the network activity inout indicators and "
254 "prefer using alpha to distinguish network activity."
255 bug: "310715220"
256}