blob: f5c4843e1324ff8f00ccd8fbe6376b59ad635bbb [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 {
Beverlyc853b772024-02-16 21:19:27 +000018 name: "udfps_view_performance"
19 namespace: "systemui"
20 description: "Decrease screen off blocking calls by waiting until the device is finished going to sleep before adding the udfps view."
21 bug: "225183106"
22 metadata {
23 purpose: PURPOSE_BUGFIX
24 }
25}
26
27flag {
Yining Liu6ed11b92024-01-18 18:01:51 +080028 name: "notification_async_group_header_inflation"
29 namespace: "systemui"
30 description: "Inflates the notification group summary header views from the background thread."
31 bug: "217799515"
32}
33
34flag {
Yining Liu9a835c82023-10-31 01:30:23 +000035 name: "notification_async_hybrid_view_inflation"
36 namespace: "systemui"
37 description: "Inflates hybrid (single-line) notification views from the background thread."
38 bug: "217799515"
39}
40
41flag {
Jeff DeCew3a819de2023-05-12 12:49:30 -040042 name: "notification_color_update_logger"
43 namespace: "systemui"
44 description: "Enabled debug logging and dumping of notification color updates."
45 bug: "294347738"
46}
47
48flag {
Ioana Alexandrufeaaa022023-10-06 11:21:48 +020049 name: "notifications_footer_view_refactor"
50 namespace: "systemui"
51 description: "Enables the refactored version of the footer view in the notification shade "
52 "(containing the \"Clear all\" button). Should not bring any behavior changes"
53 bug: "293167744"
54}
Alexander Roederer74cda602023-10-11 00:24:09 +000055
56flag {
Steve Elliott34edc352023-10-23 13:14:24 -040057 name: "notifications_icon_container_refactor"
58 namespace: "systemui"
59 description: "Enables the refactored version of the notification icon container in StatusBar, "
60 "AOD, and the notification shelf. Should not bring any behavioral changes."
61 bug: "278765923"
62}
63
64flag {
Nick Chameyev8ea0f4c2023-10-20 18:09:50 +010065 name: "notifications_hide_on_display_switch"
66 namespace: "systemui"
67 description: "Temporary hides notifications when folding/unfolding to reduce unfold latency"
68 bug: "293824309"
69}
70
71flag {
András Kurucz305199f2023-12-18 18:31:34 +000072 name: "notifications_improved_hun_animation"
73 namespace: "systemui"
74 description: "Adds a translateY animation, and other improvements to match the motion specs of the HUN Intro + Outro animations."
75 bug: "243302608"
76}
77
78flag {
András Kurucz3e88b352023-11-06 13:48:09 +000079 name: "notifications_live_data_store_refactor"
80 namespace: "systemui"
81 description: "Replaces NotifLiveDataStore with ActiveNotificationListRepository, and updates consumers. "
82 "Should not bring any behavior changes."
83 bug: "308623704"
84}
85
86flag {
Ioana Alexandrue37b08f32024-02-15 14:25:39 +010087 name: "notifications_background_media_icons"
88 namespace: "systemui"
89 description: "Updates icons for media notifications in the background."
90 bug: "315143160"
91 metadata {
92 purpose: PURPOSE_BUGFIX
93 }
94}
95
96flag {
Jeff DeCewb811f002024-01-25 17:21:55 +000097 name: "nssl_falsing_fix"
98 namespace: "systemui"
99 description: "Minor touch changes to prevent falsing errors in NSSL"
100 bug: "316551193"
101 metadata {
102 purpose: PURPOSE_BUGFIX
103 }
104}
105
106flag {
Andreas Miko644f9502023-12-12 17:40:21 +0100107 name: "refactor_get_current_user"
108 namespace: "systemui"
109 description: "KeyguardUpdateMonitor.getCurrentUser() was providing outdated results."
110 bug: "305984787"
111}
112
113flag {
Lyn20c65062023-11-13 20:34:03 +0000114 name: "notification_throttle_hun"
115 namespace: "systemui"
116 description: "During notification avalanche, throttle HUNs showing in fast succession."
117 bug: "307288824"
118}
119
120flag {
Lyn06388cc2024-01-18 22:17:50 +0000121 name: "notification_avalanche_suppression"
122 namespace: "systemui"
123 description: "After notification avalanche floodgate event, suppress HUNs completely."
124 bug: "321089634"
125}
126
127flag {
Jeff DeCew74e8d432023-11-29 19:34:19 +0000128 name: "notification_background_tint_optimization"
129 namespace: "systemui"
130 description: "Re-enable the codepath that removed tinting of notifications when the"
131 " standard background color is desired. This was the behavior before we discovered"
132 " a resources threading issue, which we worked around by tinting the notification"
133 " backgrounds and footer buttons."
Jeff DeCewb45610e2024-01-31 20:46:03 +0000134 bug: "294830092"
Jeff DeCew74e8d432023-11-29 19:34:19 +0000135}
136
137flag {
Ale Nijamkin2e087362023-10-18 00:29:03 +0000138 name: "scene_container"
139 namespace: "systemui"
140 description: "Enables the scene container framework go/flexiglass."
141 bug: "283121968"
142}
Julia Tuttle5201be82023-10-30 17:49:30 -0400143
144flag {
Brad Hinegardner5ded8022023-11-03 16:57:51 +0000145 name: "keyguard_bottom_area_refactor"
146 namespace: "systemui"
147 description: "Bottom area of keyguard refactor move into KeyguardRootView. Includes "
148 "lock icon and others."
149 bug: "290652751"
150}
151
152flag {
Beverly96b3e592023-11-08 15:32:58 +0000153 name: "device_entry_udfps_refactor"
154 namespace: "systemui"
155 description: "Refactoring device entry UDFPS icon to use modern architecture and "
156 "consolidating it with the lock/unlock icon to create a combined DeviceEntryIconView"
157 bug: "279440316"
158}
159
160flag {
Julia Tuttle5201be82023-10-30 17:49:30 -0400161 name: "visual_interruptions_refactor"
162 namespace: "systemui"
163 description: "Enables the refactored version of the code to decide when notifications "
164 "HUN, bubble, pulse, or FSI."
165 bug: "261728888"
166}
Juan Sebastian Martineze95f996b2023-11-01 14:06:47 -0700167
168flag {
169 name: "haptic_brightness_slider"
170 namespace: "systemui"
171 description: "Adds haptic feedback to the brightness slider."
172 bug: "296467915"
173}
Matt Pietal2cfc6842023-11-03 16:41:09 +0000174
175flag {
176 name: "keyguard_shade_migration_nssl"
177 namespace: "systemui"
178 description: "Moves NSSL into a shared element between the notification_panel and "
179 "keyguard_root_view."
180 bug: "278054201"
181}
Fabián Kozynski9385f732023-11-09 12:47:57 -0500182
183flag {
Nicolo' Mazzucato24c5a7c2023-11-20 11:49:17 +0000184 name: "unfold_animation_background_progress"
185 namespace: "systemui"
186 description: "Moves unfold animation progress calculation to a background thread"
187 bug: "277879146"
188}
189
190flag {
Nicolo' Mazzucato9ec7e7c2023-12-28 08:52:46 +0000191 name: "enable_background_keyguard_ondrawn_callback"
192 namespace: "systemui"
193 description: "Calls the onDrawn keyguard in the background, without being blocked by main"
194 "thread work. This results in the screen to turn on earlier when the main thread is stuck. "
195 "Note that, even after this callback is called, we're waiting for all windows to finish "
196 " drawing."
197 bug: "295873557"
Nicolò Mazzucato16eecfa2024-02-05 09:10:08 +0000198 metadata {
199 purpose: PURPOSE_BUGFIX
200 }
Nicolo' Mazzucato9ec7e7c2023-12-28 08:52:46 +0000201}
202
203flag {
Peter Kalauskasfc9ba4a2023-11-13 22:00:33 +0000204 name: "qs_new_pipeline"
205 namespace: "systemui"
206 description: "Use the new pipeline for Quick Settings. Should have no behavior changes."
207 bug: "241772429"
Fabián Kozynski9385f732023-11-09 12:47:57 -0500208}
Peter Kalauskasfc9ba4a2023-11-13 22:00:33 +0000209
210flag {
Anton Potapov10ae1962023-11-13 19:39:59 +0000211 name: "qs_new_tiles"
212 namespace: "systemui"
213 description: "Use the new tiles in the Quick Settings. Should have no behavior changes."
Anton Potapovfecf0bc2024-01-04 10:55:18 +0000214 bug: "311147395"
Anton Potapov10ae1962023-11-13 19:39:59 +0000215}
216
217flag {
Peter Kalauskasfc9ba4a2023-11-13 22:00:33 +0000218 name: "coroutine_tracing"
219 namespace: "systemui"
220 description: "Adds thread-local data to System UI's global coroutine scopes to "
221 "allow for tracing of coroutine continuations using System UI's tracinglib"
222 bug: "289353932"
Andreas Mikoa6c9dae2023-11-14 14:46:21 +0100223}
224
225flag {
Peter Kalauskas62bf22b2023-12-15 01:44:39 +0000226 name: "edge_back_gesture_handler_thread"
227 namespace: "systemui"
228 description: "Moves the EdgeBackGestureHandler window, which is used for rendering the back "
229 "arrow, to a separate thread. Previously, the EdgeBackGestureHandler window would share "
230 "the main thread with the rest of System UI."
231 bug: "304583132"
232}
233
234flag {
Andreas Mikoa6c9dae2023-11-14 14:46:21 +0100235 name: "new_aod_transition"
236 namespace: "systemui"
237 description: "New LOCKSCREEN <=> AOD transition"
238 bug: "301915812"
Andreas Miko980ef672023-11-14 14:49:31 +0100239}
240
241flag {
242 name: "light_reveal_migration"
243 namespace: "systemui"
244 description: "Move LightRevealScrim to recommended architecture"
245 bug: "281655028"
Beth Thibodeau622c4fe2023-11-17 17:12:04 -0600246}
247
248flag {
Marcelo Arteiro2398ebb2023-11-21 13:38:17 +0000249 name: "theme_overlay_controller_wakefulness_deprecation"
250 namespace: "systemui"
251 description: "Replacing WakefulnessLifecycle by KeyguardTransitionInteractor in "
252 "ThemOverlayController to mitigate flickering when locking the device"
253 bug: "308676488"
254}
255
256flag {
Chris Göllner30486e72024-02-07 17:03:08 +0000257 name: "truncated_status_bar_icons_fix"
258 namespace: "systemui"
259 description: "Fixes the status bar icons being trunacted due to the status bar window height "
260 "not being updated after certain rotations"
261 bug: "323299264"
262 metadata {
263 purpose: PURPOSE_BUGFIX
264 }
265}
266
267flag {
Chandru S1df19782023-09-30 18:34:20 -0700268 name: "compose_bouncer"
269 namespace: "systemui"
270 description: "Use the new compose bouncer in SystemUI"
271 bug: "310005730"
272}
273
274flag {
Beth Thibodeau622c4fe2023-11-17 17:12:04 -0600275 name: "media_in_scene_container"
276 namespace: "systemui"
277 description: "Enable media in the scene container framework"
278 bug: "296122467"
279}
Marcelo Arteiro2398ebb2023-11-21 13:38:17 +0000280
Stefan Andonian3f43e1d2023-11-20 22:04:24 +0000281flag {
Chris Göllner0f02ef52023-12-15 10:11:49 +0000282 name: "pss_task_switcher"
283 namespace: "systemui"
284 description: "Enable the task switcher feature for partial screen sharing"
285 bug: "317208379"
286}
287
288flag {
Chandru Sc78f0822023-11-30 15:38:19 +0530289 name: "revamped_bouncer_messages"
290 namespace: "systemui"
291 description: "Change the bouncer message to be a 2-line more descriptive message"
292 bug: "236891644"
293}
294
295flag {
Chandru S7ec7fd22023-11-30 13:12:25 +0530296 name: "rest_to_unlock"
297 namespace: "systemui"
298 description: "Require prolonged touch for fingerprint authentication"
299 bug: "303672286"
300}
301
302flag {
Stefan Andonian3f43e1d2023-11-20 22:04:24 +0000303 name: "record_issue_qs_tile"
304 namespace: "systemui"
305 description: "Replace Record Trace QS Tile with expanded Record Issue QS Tile"
306 bug: "305049544"
307}
Chandru S7ec7fd22023-11-30 13:12:25 +0530308
Aurélien Pomini7c643452023-09-21 10:06:47 +0000309flag {
Sherry Zhou860c9b92023-11-28 17:56:31 +0000310 name: "migrate_clocks_to_blueprint"
311 namespace: "systemui"
312 description: "Move clock related views from KeyguardStatusView to KeyguardRootView, "
313 "and use modern architecture for lockscreen clocks"
314 bug: "301502635"
315}
316
317flag {
Aurélien Pomini7c643452023-09-21 10:06:47 +0000318 name: "fast_unlock_transition"
319 namespace: "systemui"
320 description: "Faster wallpaper unlock transition"
321 bug: "298186160"
322}
Juan Sebastian Martinezc9ff0572023-12-04 15:39:18 -0800323
324flag {
Chris Göllner32aad6c2024-02-16 14:00:31 +0000325 name: "centralized_status_bar_height_fix"
Chris Göllner7a56e772023-12-28 17:51:48 +0000326 namespace: "systemui"
327 description: "Refactors shade header and keyguard status bar to read status bar dimens from a"
328 " central place, instead of reading resources directly. This is to take into account display"
329 " cutouts and other special cases. "
Chris Göllner414e9bc2024-02-19 09:41:22 +0000330 bug: "317016114"
Chris Göllner932714b2024-02-15 14:56:45 +0000331 metadata {
332 purpose: PURPOSE_BUGFIX
333 }
Chris Göllner7a56e772023-12-28 17:51:48 +0000334}
335
336flag {
Nicolo' Mazzucatocd5f25b2023-12-07 10:11:50 +0000337 name: "enable_layout_tracing"
338 namespace: "systemui"
339 description: "Enables detailed traversal slices during measure and layout in perfetto traces"
340 bug: "315274804"
341}
342
343flag {
Juan Sebastian Martinezc9ff0572023-12-04 15:39:18 -0800344 name: "quick_settings_visual_haptics_longpress"
345 namespace: "systemui"
346 description: "Enable special visual and haptic effects for quick settings tiles with long-press actions"
347 bug: "229856884"
348}
Evan Laird3f199372023-11-14 18:32:19 -0500349
350flag {
Aaron Liu688c8232023-12-14 11:55:04 -0800351 name: "switch_user_on_bg"
352 namespace: "systemui"
353 description: "Does user switching on a background thread"
354 bug: "284095720"
355}
356
357flag {
Evan Laird3f199372023-11-14 18:32:19 -0500358 name: "status_bar_static_inout_indicators"
359 namespace: "systemui"
360 description: "(Upstream request) Always show the network activity inout indicators and "
361 "prefer using alpha to distinguish network activity."
362 bug: "310715220"
363}
Juan Sebastian Martineze28f3d22023-12-18 14:55:26 -0800364
365flag {
366 name: "haptic_volume_slider"
367 namespace: "systemui"
368 description: "Adds haptic feedback to the volume slider."
369 bug: "316953430"
370}
Richard MacGregor019df652023-12-18 15:27:36 -0800371
372flag {
Anton Potapov0ccf69a2023-12-21 16:42:40 +0000373 name: "new_volume_panel"
374 namespace: "systemui"
375 description: "Switches to the new volume panel (without Slices)."
376 bug: "202262476"
377}
378
379flag {
Miranda Kephart5b0287b2023-11-20 11:24:03 -0500380 name: "screenshot_action_dismiss_system_windows"
381 namespace: "systemui"
382 description: "Dismiss existing system windows when starting action from screenshot UI"
383 bug: "309933761"
384}
385
386flag {
Beverly0cdcacb2024-01-04 18:40:05 +0000387 name: "run_fingerprint_detect_on_dismissible_keyguard"
388 namespace: "systemui"
389 description: "Run fingerprint detect instead of authenticate if the keyguard is dismissible."
390 bug: "311145851"
391}
392
393flag {
Xiaowen Lei19b52dc2024-01-02 17:47:22 +0000394 name: "smartspace_relocate_to_bottom"
395 namespace: "systemui"
396 description: "Relocate Smartspace to bottom of the Lock Screen"
397 bug: "316212788"
398}
Joshua Mokutfb94bee2024-01-09 23:46:47 +0000399
400flag {
401 name: "pin_input_field_styled_focus_state"
402 namespace: "systemui"
403 description: "Enables styled focus states on pin input field if keyboard is connected"
404 bug: "316106516"
405}
Josh Tsujib2755ca2024-01-18 13:53:11 -0500406
407flag {
408 name: "keyguard_wm_state_refactor"
409 namespace: "systemui"
410 description: "Enables refactored logic for SysUI+WM unlock/occlusion code paths"
411 bug: "278086361"
412}
Aaron Liu972537c2024-01-26 14:35:06 -0800413
414flag {
Aaron Liue51a5d32024-01-30 13:22:41 -0800415 name: "compose_lockscreen"
Aaron Liu972537c2024-01-26 14:35:06 -0800416 namespace: "systemui"
Aaron Liue51a5d32024-01-30 13:22:41 -0800417 description: "Enables the compose version of lockscreen that runs standalone, outside of Flexiglass."
Aaron Liu972537c2024-01-26 14:35:06 -0800418 bug: "301968149"
419}
Zhe Songe2a44482024-01-30 10:50:57 +0000420
421flag {
422 name: "enable_contextual_tip_for_power_off"
423 namespace: "systemui"
424 description: "Enables on-screen contextual tip about how to power off or restart phone"
425 bug: "322891421"
426}
427
428flag {
429 name: "enable_contextual_tip_for_take_screenshot"
430 namespace: "systemui"
431 description: "Enables on-screen contextual tip about how to take screenshot."
432 bug: "322891421"
433}
Yein Jobbfb3312024-01-31 22:40:47 +0000434
435flag {
Yu Chao3964b562024-02-01 08:03:59 +0000436 name: "enable_contextual_tips"
437 description: "Enables showing contextual tips."
438 namespace: "systemui"
439 bug: "322891421"
440}
441
442flag {
Yein Jobbfb3312024-01-31 22:40:47 +0000443 name: "shaderlib_loading_effect_refactor"
444 namespace: "systemui"
445 description: "Extend shader library to provide the common loading effects."
446 bug: "282007590"
447}
448
Matías Hernándeza67952e2024-02-06 15:29:52 +0100449flag {
450 name: "notification_row_user_context"
451 namespace: "systemui"
452 description: "Create a user-specific Context for the ImageResolver in ExpandableNotificationRow"
453 " (based on the NotificationEntry's user)."
454 bug: "317503801"
455 metadata {
456 purpose: PURPOSE_BUGFIX
457 }
458}
459
Devarshi Bhattfdddc972024-02-06 04:52:56 +0000460flag {
461 name: "get_connected_device_name_unsynchronized"
462 namespace: "systemui"
463 description: "Decide whether to fetch the connected bluetooth device name outside a synchronized block."
464 bug: "323995015"
465 metadata {
Sindhu561c2402024-02-07 09:38:47 +0000466 purpose: PURPOSE_BUGFIX
467 }
468}
469
470flag {
Sindhuc5d22842024-02-09 06:47:35 +0000471 name: "slice_manager_binder_call_background"
472 namespace: "systemui"
473 description: "Move the ISliceManager#getPinnedSpecs binder call to the background thread."
474 bug: "322745650"
475 metadata {
476 purpose: PURPOSE_BUGFIX
477 }
478}
479
480flag {
Sindhu561c2402024-02-07 09:38:47 +0000481 name: "register_new_wallet_card_in_background"
482 namespace: "systemui"
483 description: "Decide whether the call to registerNewWalletCards method should be issued on background thread."
484 bug: "322506838"
485 metadata {
486 purpose: PURPOSE_BUGFIX
487 }
Devarshi Bhattfdddc972024-02-06 04:52:56 +0000488}
archishab51923e2024-02-08 05:53:04 +0000489
490flag {
491 name: "update_user_switcher_background"
492 namespace: "systemui"
493 description: "Decide whether to update user switcher in background thread."
494 bug: "322745650"
495 metadata {
496 purpose: PURPOSE_BUGFIX
497 }
498}
Devarshi Bhatt17fa9832024-02-16 06:27:10 +0000499
500flag {
501 name: "register_zen_mode_content_observer_background"
502 namespace: "systemui"
503 description: "Decide whether to register zen mode content observers in the background thread."
504 bug: "324515627"
505 metadata {
506 purpose: PURPOSE_BUGFIX
507 }
508}
Miranda Kephart2976ca82024-02-16 10:14:15 -0500509
510flag {
511 name: "clipboard_noninteractive_on_lockscreen"
512 namespace: "systemui"
513 description: "Prevents the interactive clipboard UI from appearing when device is locked"
514 bug: "317048495"
515 metadata {
516 purpose: PURPOSE_BUGFIX
517 }
518}
Jernej Virag96b48772024-02-20 10:34:27 +0100519
520flag {
521 name: "trim_resources_with_background_trim_at_lock"
522 namespace: "systemui"
523 description: "Trim fonts and other caches when the device locks to lower memory consumption."
524 bug: "322143614"
525 metadata {
526 purpose: PURPOSE_BUGFIX
527 }
528}
Julia Tuttlec22e70f2024-02-14 16:04:59 -0500529
530flag {
531 name: "dedicated_notif_inflation_thread"
532 namespace: "systemui"
533 description: "Create a separate background thread for inflating notifications"
534 bug: "308967184"
535 metadata {
536 purpose: PURPOSE_BUGFIX
537 }
538}
Ibrahim Yilmaz31c681b2024-02-21 11:26:36 +0000539
540flag {
541 name: "bind_keyguard_media_visibility"
542 namespace: "systemui"
543 description: "Binds Keyguard Media Controller Visibility to MediaContainerView"
544 bug: "298213983"
545 metadata {
546 purpose: PURPOSE_BUGFIX
547 }
548}
bvineeth68756982024-02-23 09:57:28 +0000549
550flag {
551 name: "notify_power_manager_user_activity_background"
552 namespace: "systemui"
553 description: "Decide whether to notify the user activity to power manager in the background thread."
554 bug: "325203885"
555 metadata {
556 purpose: PURPOSE_BUGFIX
557 }
558}