summaryrefslogtreecommitdiff
path: root/packages/SystemUI/aconfig/systemui.aconfig
blob: e344566f97a34276675ba0a7c72bbb8377c4366e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
package: "com.android.systemui"
container: "system"

flag {
    name: "example_flag"
    namespace: "systemui"
    description: "An Example Flag"
    bug: "292511372"
}

flag {
    name: "sysui_teamfood"
    namespace: "systemui"
    description: "Enables all the sysui classic flags that are marked as being in teamfood"
    bug: "302578396"
}

flag {
   name: "multiuser_wifi_picker_tracker_support"
   namespace: "systemui"
   description: "Adds WifiPickerTracker support for multiple users to support when HSUM is enabled."
   bug: "371586248"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "udfps_view_performance"
   namespace: "systemui"
   description: "Decrease screen off blocking calls by waiting until the device is finished going to sleep before adding the udfps view."
   bug: "225183106"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "user_encrypted_source"
   namespace: "systemui"
   description: "Get rid of the local cache and rely on UserManager.isUserUnlocked directly to determine whether user CE storage is encrypted."
   bug: "333656491"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "modes_ui_dialog_paging"
   namespace: "systemui"
   description: "Add pagination to the Modes dialog in quick settings."
   bug: "376450983"
}

flag {
   name: "priority_people_section"
   namespace: "systemui"
   description: "Add a new section for priority people (aka important conversations)."
   bug: "340294566"
}

flag {
  name: "notifications_redesign_footer_view"
  namespace: "systemui"
  description: "Notifications Redesign: Update the look of the notifications footer."
  bug: "375010573"
}

flag {
  name: "notifications_redesign_guts"
  namespace: "systemui"
  description: "Notifications Redesign: Update the look of the notification guts (that appear on long press). This includes using the new cache for app icons."
  bug: "394822197"
}

flag {
   name: "notification_row_content_binder_refactor"
   namespace: "systemui"
   description: "Convert the NotificationContentInflater to Kotlin and restructure it to support modern views"
   bug: "343942780"
}

flag {
   name: "notification_view_flipper_pausing_v2"
   namespace: "systemui"
   description: "Pause ViewFlippers inside Notification custom layouts when the shade is closed."
   bug: "309146176"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "notification_ambient_suppression_after_inflation"
   namespace: "systemui"
   description: "Move the DND visual effects filter to the finalize stage of the pipeline when it is doze-dependent, but keep it in the pre-group stage when it is doze-independent."
   bug: "373411431"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "notification_over_expansion_clipping_fix"
   namespace: "systemui"
   description: "Fix NSSL clipping when over-expanding; fixes split shade bug."
   bug: "288553572"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "notification_add_x_on_hover_to_dismiss"
    namespace: "systemui"
    description: "Adds an x to notifications which shows up on mouse hover, allowing the user to "
        "dismiss a notification with mouse."
    bug: "376297472"
}

flag {
    name: "notification_async_group_header_inflation"
    namespace: "systemui"
    description: "Inflates the notification group summary header views from the background thread."
    bug: "217799515"
}

flag {
    name: "notification_async_hybrid_view_inflation"
    namespace: "systemui"
    description: "Inflates hybrid (single-line) notification views from the background thread."
    bug: "217799515"
}

flag {
    name: "notification_color_update_logger"
    namespace: "systemui"
    description: "Enabled debug logging and dumping of notification color updates."
    bug: "294347738"
}

flag {
    name: "notifications_footer_visibility_fix"
    namespace: "systemui"
    description: "Fixes a bug where the footer would briefly appear when dismissing a HUN"
    bug: "356552869"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "notifications_icon_container_refactor"
    namespace: "systemui"
    description: "Enables the refactored version of the notification icon container in StatusBar, "
        "AOD, and the notification shelf. Should not bring any behavioral changes."
    bug: "278765923"
}

flag {
    name: "notifications_hide_on_display_switch"
    namespace: "systemui"
    description: "Temporary hides notifications when folding/unfolding to reduce unfold latency"
    bug: "293824309"
}

flag {
    name: "notification_content_alpha_optimization"
    namespace: "systemui"
    description: "Only reset alpha values of needed content views"
    bug: "292024656"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "notifications_live_data_store_refactor"
    namespace: "systemui"
    description: "Replaces NotifLiveDataStore with ActiveNotificationListRepository, and updates consumers. "
        "Should not bring any behavior changes."
    bug: "308623704"
}

flag {
   name: "notification_transparent_header_fix"
   namespace: "systemui"
   description: "fix the transparent group header issue for async header inflation."
   bug: "340161724"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "notifications_pinned_hun_in_shade"
    namespace: "systemui"
    description: "Fixes displaying pinned HUNs in the Shade, making sure that their y and z positions are correct."
    bug: "385041854"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "notifications_hun_shared_animation_values"
    namespace: "systemui"
    description: "Adds a shared class for fetching HUN animation values."
    bug: "393369891"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "pss_app_selector_recents_split_screen"
   namespace: "systemui"
   description: "Allows recent apps selected for partial screenshare to be launched in split screen mode"
   bug: "320449039"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "notifications_background_icons"
    namespace: "systemui"
    description: "Moves part of the notification icon updates to the background."
    bug: "315143361"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "refactor_get_current_user"
    namespace: "systemui"
    description: "KeyguardUpdateMonitor.getCurrentUser() was providing outdated results."
    bug: "305984787"
}

flag {
    name: "notification_avalanche_throttle_hun"
    namespace: "systemui"
    description: "During notification avalanche, throttle HUNs showing in fast succession."
    bug: "307288824"
}

flag {
    name: "notification_avalanche_suppression"
    namespace: "systemui"
    description: "After notification avalanche floodgate event, suppress HUNs completely."
    bug: "321089634"
}

flag {
  name: "notification_bundle_ui"
  namespace: "systemui"
  description: "Three-level group UI for notification bundles"
  bug: "367996732"
}

flag {
    name: "notification_background_tint_optimization"
    namespace: "systemui"
    description: "Re-enable the codepath that removed tinting of notifications when the"
        " standard background color is desired.  This was the behavior before we discovered"
        " a resources threading issue, which we worked around by tinting the notification"
        " backgrounds."
    bug: "294830092"
}

flag {
    name: "notification_footer_background_tint_optimization"
    namespace: "systemui"
    description: "Remove duplicative tinting of notification footer buttons. This was the behavior"
        " before we discovered a resources threading issue, which we worked around by applying the"
        " same color as a tint to the background drawable of footer buttons."
    bug: "294830092"
}

flag {
  name: "notification_row_accessibility_expanded"
  namespace: "systemui"
  description: "Prepare ExpandableNotificationRow for new A11y expansion APIs."
  bug: "380027122"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "notification_skip_silent_updates"
    namespace: "systemui"
    description: "Do not notify HeadsUpManager for silent updates."
    bug: "401068530"
    metadata {
       purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "scene_container"
    namespace: "systemui"
    description: "Enables the scene container framework go/flexiglass."
    bug: "283121968"
}

flag {
    name: "device_entry_udfps_refactor"
    namespace: "systemui"
    description: "Refactoring device entry UDFPS icon to use modern architecture and "
        "consolidating it with the lock/unlock icon to create a combined DeviceEntryIconView"
    bug: "279440316"
}

flag {
    name: "visual_interruptions_refactor"
    namespace: "systemui"
    description: "Enables the refactored version of the code to decide when notifications "
        "HUN, bubble, pulse, or FSI."
    bug: "261728888"
}

flag {
    name: "unfold_animation_background_progress"
    namespace: "systemui"
    description: "Moves unfold animation progress calculation to a background thread"
    bug: "277879146"
}

flag {
    name: "enable_background_keyguard_ondrawn_callback"
    namespace: "systemui"
    description: "Calls the onDrawn keyguard in the background, without being blocked by main"
        "thread work. This results in the screen to turn on earlier when the main thread is stuck. "
        "Note that, even after this callback is called, we're waiting for all windows to finish "
        " drawing."
    bug: "295873557"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "qs_new_tiles"
   namespace: "systemui"
   description: "Use the new tiles in the Quick Settings. Should have no behavior changes."
   bug: "311147395"
}

flag {
   name: "qs_new_tiles_future"
   namespace: "systemui"
   description: "Use the new tiles in the Quick Settings that are still under development. This flag will not be used to gate release but to prevent tiles under development from reaching teamfood."
   bug: "311147395"
}

flag {
  name: "qs_quick_rebind_active_tiles"
  namespace: "systemui"
  description: "Rebind active custom tiles quickly."
  bug: "362526228"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "coroutine_tracing"
    namespace: "systemui"
    description: "Adds thread-local data to System UI's global coroutine scopes to "
        "allow for tracing of coroutine continuations using System UI's tracinglib"
    bug: "289353932"
}

flag {
    name: "edge_back_gesture_handler_thread"
    namespace: "systemui"
    description: "Moves the EdgeBackGestureHandler window, which is used for rendering the back "
        "arrow, to a separate thread. Previously, the EdgeBackGestureHandler window would share "
        "the main thread with the rest of System UI."
    bug: "304583132"
}

flag {
    name: "status_bar_ui_thread"
    namespace: "systemui"
    description: "Move the StatusBar window to a new UI thread, which is separate from the main "
        "thread."
    bug: "374159193"
}

flag {
    name: "notification_shade_ui_thread"
    namespace: "systemui"
    description: "Move the NotificationShade window to a new UI thread, which is separate from "
        "the main thread."
    bug: "374159657"
}

flag {
    name: "new_aod_transition"
    namespace: "systemui"
    description: "New LOCKSCREEN <=> AOD transition"
    bug: "301915812"
}

flag {
   name: "theme_overlay_controller_wakefulness_deprecation"
   namespace: "systemui"
   description: "Replacing WakefulnessLifecycle by KeyguardTransitionInteractor in "
        "ThemOverlayController to mitigate flickering when locking the device"
   bug: "308676488"
}

flag {
    name: "status_bar_mobile_icon_kairos"
    namespace: "systemui"
    description: "Refactors the mobile connection icon in the status bar to use the Kairos library"
    bug: "383172066"
}

flag {
    name: "status_bar_monochrome_icons_fix"
    namespace: "systemui"
    description: "Fixes the status bar icon size when drawing InsetDrawables (ie. monochrome icons)"
    bug: "329091967"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "status_bar_show_audio_only_projection_chip"
    namespace: "systemui"
    description: "Show chip on the left side of the status bar when a user is only sharing *audio* "
        "during a media projection"
    bug: "373308507"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "status_bar_auto_start_screen_record_chip"
    namespace: "systemui"
    description: "When screen recording, use the specified start time to update the screen record "
        "chip state instead of waiting for an official 'recording started' signal"
    bug: "366448907"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}


flag {
    name: "status_bar_chips_modernization"
    namespace: "systemui"
    description: "Deprecate OngoingCallController and implement OngoingActivityChips"
    "in compose"
    bug: "372657935"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "status_bar_signal_policy_refactor"
   namespace: "systemui"
   description: "Use a settings observer for airplane mode and make StatusBarSignalPolicy startable"
   bug: "264539100"
}

flag {
   name: "status_bar_signal_policy_refactor_ethernet"
   namespace: "systemui"
   description: "Use recommended architecture for ethernet icon in status bar"
   bug: "291321279"
}

flag {
    name: "status_bar_swipe_over_chip"
    namespace: "systemui"
    description: "Allow users to swipe over the status bar chip to open the shade"
    bug: "185897191"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "status_bar_always_check_underlying_networks"
    namespace: "systemui"
    description: "For status bar connectivity UI, always check underlying networks for wifi and "
        "carrier merged information, regardless of the sepcified transport type"
    bug: "352162710"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "status_bar_stop_updating_window_height"
    namespace: "systemui"
    description: "Don't have PhoneStatusBarView manually trigger an update of the height in "
        "StatusBarWindowController"
    bug: "360115167"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "status_bar_popup_chips"
    namespace: "systemui"
    description: "Show rich ongoing processes as chips in the status bar"
    bug: "372964148"
}

flag {
    name: "status_bar_no_hun_behavior"
    namespace: "systemui"
    description: "When there's a HUN, don't show the HUN text or icon in the status bar. Instead, "
       "continue showing the usual status bar."
    bug: "385740230"
}

flag {
  name: "status_bar_font_updates"
  namespace: "systemui"
  description: "Read only flag for using a new font in the status bar"
  bug: "393609116"
  is_fixed_read_only: true
}

flag {
    name: "status_bar_window_no_custom_touch"
    namespace: "systemui"
    description: "Don't have any custom touch handling in StatusBarWindowView"
    bug: "391894499"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "icon_refresh_2025"
    namespace: "systemui"
    description: "Build time flag for 2025 icon refresh"
    bug: "391605373"
    is_fixed_read_only: true
}

flag {
    name: "promote_notifications_automatically"
    namespace: "systemui"
    description: "Flag to automatically turn certain notifications into promoted notifications so "
        " we can test promoted notifications with teamfooders. This flag should *never* be released "
        "to trunkfood or nextfood."
    bug: "367705002"
}

flag {
    name: "debug_live_updates_promote_all"
    namespace: "systemui"
    description: "Promote all notifications to Live Updates (RONs). (For testing/debugging only, do not promote/release!)"
    bug: "404838239"
}

flag {
    name: "compose_bouncer"
    namespace: "systemui"
    description: "Use the new compose bouncer in SystemUI"
    bug: "310005730"
}

flag {
   name: "pss_task_switcher"
   namespace: "systemui"
   description: "Enable the task switcher feature for partial screen sharing"
   bug: "317208379"
}

flag {
   name: "revamped_bouncer_messages"
   namespace: "systemui"
   description: "Change the bouncer message to be a 2-line more descriptive message"
   bug: "236891644"
}

flag {
   name: "face_scanning_animation_npe_fix"
   namespace: "systemui"
   description: "Fix for the face scanning animation NPE"
   bug: "392032258"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "avalanche_replace_hun_when_critical"
   namespace: "systemui"
   description: "Fix for replacing a sticky HUN when a critical HUN posted"
   bug: "403301297"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "indication_text_a11y_fix"
    namespace: "systemui"
    description: "add double shadow to the indication text at the bottom of the lock screen"
    bug: "349297241"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "rest_to_unlock"
   namespace: "systemui"
   description: "Require prolonged touch for fingerprint authentication"
   bug: "303672286"
}

flag {
   name: "record_issue_qs_tile"
   namespace: "systemui"
   description: "Replace Record Trace QS Tile with expanded Record Issue QS Tile"
   bug: "305049544"
}

flag {
   name: "faster_unlock_transition"
   namespace: "systemui"
   description: "Faster wallpaper unlock transition"
   bug: "298186160"
   metadata {
     purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "confine_notification_touch_to_view_width"
   namespace: "systemui"
   description: "Use notification view width when detecting gestures."
   bug: "335828150"
}

flag {
  name: "fix_image_wallpaper_crash_surface_already_released"
  namespace: "systemui"
  description: "Make sure ImageWallpaper doesn't return from OnSurfaceDestroyed until any drawing is finished"
  bug: "337287154"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
   name: "activity_transition_use_largest_window"
   namespace: "systemui"
   description: "Target largest opening window during activity transitions."
   bug: "323294573"
   metadata {
       purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "enable_layout_tracing"
  namespace: "systemui"
  description: "Enables detailed traversal slices during measure and layout in perfetto traces"
  bug: "315274804"
}

flag {
   name: "switch_user_on_bg"
   namespace: "systemui"
   description: "Does user switching on a background thread"
   bug: "284095720"
}

flag {
    name: "status_bar_static_inout_indicators"
    namespace: "systemui"
    description: "(Upstream request) Always show the network activity inout indicators and "
        "prefer using alpha to distinguish network activity."
    bug: "310715220"
}

flag {
    name: "status_bar_switch_to_spn_from_data_spn"
    namespace: "systemui"
    description: "Fix usage of the SPN broadcast extras"
    bug: "350812372"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "status_bar_root_modernization"
    namespace: "systemui"
    description: "Feature flag for replacing the status bar fragment with a compose root"
    bug: "364360986"
}

flag {
    name: "new_volume_panel"
    namespace: "systemui"
    description: "Switches to the new volume panel (without Slices)."
    bug: "202262476"
}

flag {
    name: "use_volume_controller"
    namespace: "systemui"
    description: "Adds Volume Controller signals to the AudioRepository to update volume"
    bug: "349348461"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "volume_redesign"
    namespace: "systemui"
    description: "Enables Volume visuals update"
    bug: "368308908"
}

flag {
    name: "clipboard_overlay_multiuser"
    namespace: "systemui"
    description: "Fix clipboard overlay for secondary users"
    bug: "217922018"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "clipboard_shared_transitions"
    namespace: "systemui"
    description: "Show shared transitions from clipboard"
    bug: "360843770"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "clipboard_image_timeout"
    namespace: "systemui"
    description: "Wait for clipboard image to load before showing UI"
    bug: "359864629"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "clipboard_use_description_mimetype"
    namespace: "systemui"
    description: "Read item mimetype from description rather than checking URI"
    bug: "357197236"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "screenshot_action_dismiss_system_windows"
    namespace: "systemui"
    description: "Dismiss existing system windows when starting action from screenshot UI"
    bug: "309933761"
}

flag {
    name: "fix_screenshot_action_dismiss_system_windows"
    namespace: "systemui"
    description: "Dismiss existing system windows when starting action from screenshot UI"
    bug: "309933761"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "screenshot_scroll_crop_view_crash_fix"
    namespace: "systemui"
    description: "Mitigate crash on invalid computed range in CropView"
    bug: "232633995"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "screenshot_ui_controller_refactor"
    namespace: "systemui"
    description: "Simplify and refactor ScreenshotController"
    bug: "354711957"
}

flag {
    name: "screenshot_multidisplay_focus_change"
    namespace: "systemui"
    description: "Only capture a single display when screenshotting"
    bug: "362720389"
}

flag {
    name: "screenshot_policy_split_and_desktop_mode"
    namespace: "systemui"
    description: "Improves screenshot policy handling for split screen and desktop mode."
    bug: "365597999"
}

flag {
   name: "run_fingerprint_detect_on_dismissible_keyguard"
   namespace: "systemui"
   description: "Run fingerprint detect instead of authenticate if the keyguard is dismissible."
   bug: "311145851"
}

flag {
   name: "smartspace_relocate_to_bottom"
   namespace: "systemui"
   description: "Relocate Smartspace to bottom of the Lock Screen"
   bug: "316212788"
}

flag {
   name: "smartspace_remoteviews_rendering_fix"
   namespace: "systemui"
   description: "Indicate Smartspace RemoteViews rendering"
   bug: "326292691"
   metadata {
     purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "smartspace_lockscreen_viewmodel"
   namespace: "systemui"
   description: "Indicate Smartspace lockscreen viewmodel"
   bug: "331451011"
}

flag {
    name: "smartspace_viewpager2"
    namespace: "systemui"
    description: "Use viewpager2 in Smartspace"
    bug: "259566300"
}

flag {
    name: "smartspace_swipe_event_logging_fix"
    namespace: "systemui"
    description: "Log card swipe events in smartspace"
    bug: "374150422"
    metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "pin_input_field_styled_focus_state"
   namespace: "systemui"
   description: "Enables styled focus states on pin input field if keyboard is connected"
   bug: "316106516"
}

flag {
    name: "keyguard_wm_state_refactor"
    namespace: "systemui"
    description: "Enables refactored logic for SysUI+WM unlock/occlusion code paths"
    bug: "278086361"
}

flag {
   name: "enable_contextual_tip_for_power_off"
   namespace: "systemui"
   description: "Enables on-screen contextual tip about how to power off or restart phone"
   bug: "322891421"
}

flag {
   name: "enable_contextual_tip_for_take_screenshot"
   namespace: "systemui"
   description: "Enables on-screen contextual tip about how to take screenshot."
   bug: "322891421"
}

flag {
    name: "enable_contextual_tip_for_mute_volume"
    namespace: "systemui"
    description: "Enables the contextual tip for muting the volume."
    bug: "337737048"
}

flag {
   name: "disable_contextual_tips_frequency_check"
   description: "Disables frequency capping check for contextual tips."
   namespace: "systemui"
   bug: "322891421"
}

flag {
   name: "disable_contextual_tips_ios_switcher_check"
   description: "Disables iOS switcher check which guard the tips designed only for iOS switchers."
   namespace: "systemui"
   bug: "322891421"
}

flag {
   name: "enable_contextual_tips"
   description: "Enables showing contextual tips."
   namespace: "systemui"
   bug: "322891421"
}

flag {
   name: "contextual_tips_assistant_dismiss_fix"
   namespace: "systemui"
   description: "Improve assistant dismiss signal accuracy for contextual tips."
   bug: "334759504"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "shaderlib_loading_effect_refactor"
   namespace: "systemui"
   description: "Extend shader library to provide the common loading effects."
   bug: "282007590"
}

flag {
    name: "hearing_aids_qs_tile_dialog"
    namespace: "systemui"
    description: "Show a dialog when clicking on hearing aids quick settings tile."
    bug: "291423171"
}

flag {
    name: "notification_row_user_context"
    namespace: "systemui"
    description: "Create a user-specific Context for the ImageResolver in ExpandableNotificationRow"
        " (based on the NotificationEntry's user)."
    bug: "317503801"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "get_connected_device_name_unsynchronized"
   namespace: "systemui"
   description: "Decide whether to fetch the connected bluetooth device name outside a synchronized block."
   bug: "323995015"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "slice_manager_binder_call_background"
    namespace: "systemui"
    description: "Move the ISliceManager#getPinnedSpecs binder call to the background thread."
    bug: "322745650"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "register_new_wallet_card_in_background"
   namespace: "systemui"
   description: "Decide whether the call to registerNewWalletCards method should be issued on background thread."
   bug: "322506838"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "update_user_switcher_background"
    namespace: "systemui"
    description: "Decide whether to update user switcher in background thread."
    bug: "322745650"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "clipboard_noninteractive_on_lockscreen"
    namespace: "systemui"
    description: "Prevents the interactive clipboard UI from appearing when device is locked"
    bug: "317048495"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "bind_keyguard_media_visibility"
    namespace: "systemui"
    description: "Binds Keyguard Media Controller Visibility to MediaContainerView"
    bug: "298213983"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "use_notif_inflation_thread_for_footer"
    namespace: "systemui"
    description: "use the @NotifInflation thread for FooterView and EmptyShadeView inflation"
    bug: "375320642"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "use_notif_inflation_thread_for_row"
    namespace: "systemui"
    description: "use the @NotifInflation thread for ExpandableNotificationRow inflation"
    bug: "375320642"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "notify_power_manager_user_activity_background"
    namespace: "systemui"
    description: "Decide whether to notify the user activity to power manager in the background thread."
    bug: "325203885"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "qs_tile_focus_state"
    namespace: "systemui"
    description: "enables new focus outline for qs tiles when focused on with physical keyboard"
    bug: "312899524"
}

flag {
    name: "brightness_slider_focus_state"
    namespace: "systemui"
    description: "enables new focus outline for the brightness slider when focused on with physical keyboard"
    bug: "329244723"
}

flag {
   name: "edgeback_gesture_handler_get_running_tasks_background"
    namespace: "systemui"
    description: "Decide whether to get the running tasks from activity manager in EdgebackGestureHandler"
        " class on the background thread."
    bug: "325041960"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
  name: "screenshare_notification_hiding_bug_fix"
  namespace: "systemui"
  description: "Various bug fixes for notification redaction while screensharing"
  bug: "312784809"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "qs_ui_refactor"
    namespace: "systemui"
    description: "Enables the new QS UI pipeline that follows recommended architecture and uses"
      " Compose for the UI."
    bug: "325099249"
}

flag {
    name: "qs_ui_refactor_compose_fragment"
    namespace: "systemui"
    description: "Uses a different QS fragment in NPVC that uses the new compose UI and recommended architecture. This flag depends on qs_ui_refactor flag."
    bug: "325099249"
}

flag {
  name: "remove_dream_overlay_hide_on_touch"
  namespace: "systemui"
  description: "Removes logic to hide the dream overlay on user interaction, as it conflicts with various transitions"
  bug: "329091030"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "keyboard_docking_indicator"
    namespace: "systemui"
    description: "Glow bar indicator reveals upon keyboard docking."
    bug: "324600132"
}

flag {
    name: "keyboard_shortcut_helper_rewrite"
    namespace: "systemui"
    description: "A new implementation of the keyboards shortcuts helper sheet."
    bug: "327364197"
}

flag {
    name: "keyboard_touchpad_contextual_education"
    namespace: "systemui"
    description: "Allow showing education for physical keyboard and touchpad"
    bug: "317496783"
}

flag {
    name: "shortcut_helper_key_glyph"
    namespace: "systemui"
    description: "Allow showing key glyph in shortcut helper"
    bug: "353902478"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
  name: "dream_overlay_bouncer_swipe_direction_filtering"
  namespace: "systemui"
  description: "do not initiate bouncer swipe when the direction is opposite of the expansion"
  bug: "333632464"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "dream_input_session_pilfer_once"
    namespace: "systemui"
    description: "Pilfer at most once per input session"
    bug: "333596426"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "slice_broadcast_relay_in_background"
    namespace: "systemui"
    description: "Move handling of slice broadcast relay broadcasts to background threads"
    bug: "334767208"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "register_battery_controller_receivers_in_corestartable"
    namespace: "systemui"
    description: "Decide whether to register the receivers in battery controller impl in the BatteryControllerStartable corestartable."
    bug: "307517093"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "enforce_brightness_base_user_restriction"
    namespace: "systemui"
    description: "Enforce BaseUserRestriction for DISALLOW_CONFIG_BRIGHTNESS."
    bug: "329205638"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
  name: "ambient_touch_monitor_listen_to_display_changes"
  namespace: "systemui"
  description: "listen to display changes and cache window metrics"
  bug: "330906135"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
   name: "restart_dream_on_unocclude"
   namespace: "systemui"
   description: "re-enters dreaming upon unocclude when dreaming when originally occluding"
   bug: "338051457"
   metadata {
     purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "communal_bouncer_do_not_modify_plugin_open"
  namespace: "systemui"
  description: "do not modify notification shade when handling bouncer expansion."
  bug: "338252661"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "communal_scene_ktf_refactor"
  namespace: "systemui"
  description: "refactors the syncing mechanism between communal STL and KTF state."
  bug: "327225415"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "communal_timer_flicker_fix"
  namespace: "systemui"
  description: "fixes timers on the hub flickering when pausing"
  bug: "353801573"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "communal_widget_trampoline_fix"
  namespace: "systemui"
  description: "fixes activity starts caused by non-activity trampolines from widgets."
  bug: "350468769"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "communal_edit_widgets_activity_finish_fix"
  namespace: "systemui"
  description: "finish edit widgets activity when stopping"
  bug: "354725145"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "glanceable_hub_blurred_background"
  namespace: "systemui"
  description: "Allow blurred background on glanceable hub"
  bug: "389788272"
}

flag {
  name: "communal_widget_resizing"
  namespace: "systemui"
  description: "Allow resizing of widgets on glanceable hub"
  bug: "368053818"
}

flag {
  name: "communal_hub_use_thread_pool_for_widgets"
  namespace: "systemui"
  description: "Use a dedicated thread pool executor for loading widgets on glanceable hub"
  bug: "369412569"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "communal_responsive_grid"
  namespace: "systemui"
  description: "Enables responsive grid on glanceable hub"
  bug: "378171351"
}

flag {
  name: "low_light_clock_dream"
  namespace: "systemui"
  description: "Enables low light clock dream experience on mobile phones"
  bug: "378174125"
}

flag {
  name: "communal_standalone_support"
  namespace: "systemui"
  description: "Support communal features without a dock"
  bug: "352301247"
}

flag {
  name: "glanceable_hub_v2"
  namespace: "systemui"
  description: "Gates the refreshed glanceable hub experience that also brings the glanceable hub to mobile phones"
  bug: "375689917"
}

flag {
  name: "glanceable_hub_v2_resources"
  namespace: "systemui"
  description: "Read only flag for rolling out glanceable hub v2 resource values"
  bug: "375689917"
  is_fixed_read_only: true
}

flag {
    name: "dream_overlay_updated_font"
    namespace: "systemui"
    description: "Flag to enable updated font settings for dream overlay"
    bug: "349656117"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
  name: "app_clips_backlinks"
  namespace: "systemui"
  description: "Enables Backlinks improvement feature in App Clips"
  bug: "300307759"
}

flag {
  name: "qs_custom_tile_click_guaranteed_bug_fix"
  namespace: "systemui"
  description: "Guarantee that clicks on a tile always happen by postponing onStopListening until after the click."
  bug: "339290820"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "media_controls_user_initiated_deleteintent"
  namespace: "systemui"
  description: "Only dismiss media notifications when the control was removed by the user."
  bug: "335875159"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "media_controls_lockscreen_shade_bug_fix"
  namespace: "systemui"
  description: "Use ShadeInteractor for media location changes"
  bug: "319244625"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "media_controls_button_media3"
  namespace: "systemui"
  description: "Enable media action buttons updates using media3"
  bug: "360196209"
}

flag {
  name: "media_controls_button_media3_placement"
  namespace: "systemui"
  description: "Use media3 API for action button placement preferences"
  bug: "360196209"
}

flag {
  name: "media_controls_drawables_reuse_bugfix"
  namespace: "systemui"
  description: "Re-use created media drawables for media controls"
  bug: "358402034"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "media_controls_umo_inflation_in_background"
  namespace: "systemui"
  description: "Inflate UMO in background thread"
  bug: "368514198"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "media_controls_ui_update"
  namespace: "systemui"
  description: "Enables media visuals update"
  bug: "379044958"
}

flag {
    name: "media_controls_a11y_colors"
    namespace: "systemui"
    description: "Color scheme updates for improved a11y"
    bug: "378848399"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "media_controls_device_manager_background_execution"
    namespace: "systemui"
    description: "Sends some instances creation to background thread"
    bug: "400200474"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
  name: "output_switcher_redesign"
  namespace: "systemui"
  description: "Enables visual update for Media Output Switcher"
  bug: "388296370"
}

flag {
  namespace: "systemui"
  name: "enable_view_capture_tracing"
  description: "Enables view capture tracing in System UI."
  bug: "336521992"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "glanceable_hub_allow_keyguard_when_dreaming"
  namespace: "systemui"
  description: "Allows users to exit dream to keyguard with glanceable hub enabled"
  bug: "343505271"
}

flag {
   name: "register_wallpaper_notifier_background"
   namespace: "systemui"
   description: "Decide whether to register wallpaper change broadcast receiver on background executor."
   bug: "327315860"
   metadata {
     purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "enable_efficient_display_repository"
   namespace: "systemui"
   description: "Decide whether to use the new implementation of DisplayRepository that minimizes binder calls and background lock contention."
   bug: "345472038"
   metadata {
     purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "media_lockscreen_launch_animation"
    namespace : "systemui"
    description : "Enable the origin launch animation for UMO when opening on top of lockscreen."
    bug : "346865769"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
  name: "expand_heads_up_on_inline_reply"
  namespace: "systemui"
  description: "Expands heads up notification when users clicks reply button and activate inline reply"
  bug: "346976443"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "translucent_occluding_activity_fix"
  namespace: "systemui"
  description: "Fixes occlusion animation for transluent activities"
  bug: "303010980"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
   namespace: "systemui"
   name: "fetch_bookmarks_xml_keyboard_shortcuts"
   description: "Fetches application launch keyboard shortcuts from system server rather than building a hardcoded list."
   bug: "312452252"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
  namespace: "systemui"
  name: "qs_register_setting_observer_on_bg_thread"
  description: "Registers Quick Settings content providers on background thread"
  bug: "351766769"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "sounddose_customization"
  namespace: "systemui"
  description: "Enables custom actions for sounddose notifications"
  bug: "345227709"
}

flag {
  namespace: "systemui"
  name: "register_content_observers_async"
  description: "Use new Async API to register content observers"
  bug: "316922634"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "msdl_feedback"
  namespace: "systemui"
  description: "Enables MSDL feedback in SysUI surfaces."
  bug: "352600066"
}

flag {
  name: "hubmode_fullscreen_vertical_swipe"
  namespace: "systemui"
  description: "Enables fullscreen vertical swiping in hub mode to bring up and down the bouncer and shade"
  bug: "340177049"
  metadata {
      purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "hubmode_fullscreen_vertical_swipe_fix"
  namespace: "systemui"
  description: "Bug fix that enables fullscreen vertical swiping in hub mode to bring up and down the bouncer and shade"
  bug: "340177049"
  metadata {
      purpose: PURPOSE_BUGFIX
  }
}


flag {
   namespace: "systemui"
   name: "remove_update_listener_in_qs_icon_view_impl"
   description: "Remove update listeners in QsIconViewImpl class to avoid memory leak."
   bug: "327078684"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "sim_pin_race_condition_on_restart"
   namespace: "systemui"
   description: "The SIM PIN screen may be shown incorrectly on reboot"
   bug: "351426938"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "sim_pin_bouncer_reset"
   namespace: "systemui"
   description: "The SIM PIN bouncer does not close after unlocking"
   bug: "297461589"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "sim_pin_use_slot_id"
   namespace: "systemui"
   description: "Reorient SIM data processing around slotId instead of subId"
   bug: "376173142"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "use_transitions_for_keyguard_occluded"
   namespace: "systemui"
   description: "Use Keyguard Transitions to set Notification Shade occlusion state"
   bug: "344716537"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "relock_with_power_button_immediately"
   namespace: "systemui"
   description: "UDFPS unlock followed by immediate power button push should relock"
   bug: "343327511"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "classic_flags_multi_user"
   namespace: "systemui"
   description: "Make the classic feature flag loading multi user aware."
   bug: "345443431"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "haptics_for_compose_sliders"
   namespace: "systemui"
   description: "Adding haptic component infrastructure to sliders in Compose."
   bug: "341968766"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
  namespace: "systemui"
  name: "settings_ext_register_content_observer_on_bg_thread"
  description: "Register content observer in callback flow APIs on background thread in SettingsProxyExt."
  bug: "355389014"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  namespace: "systemui"
  name: "user_aware_settings_repositories"
  description: "Provide user-aware versions of SecureSettingsRepository and SystemSettingsRepository in SystemUI modules (see doc linked from b/356099784)."
  bug: "356099784"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "notify_password_text_view_user_activity_in_background"
    namespace: "systemui"
    description: "Decide whether to notify the user activity in password text view, to power manager in the background thread."
    bug: "346882515"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "face_message_defer_update"
    namespace: "systemui"
    description: "Only analyze the last n frames when determining whether to defer a face auth help message like low light"
    bug: "351863611"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "media_load_metadata_via_media_data_loader"
    namespace: "systemui"
    description: "Use MediaDataLoader for loading media metadata with better threading"
    bug: "358350077"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "non_touchscreen_devices_bypass_falsing"
   namespace: "systemui"
   description: "Allow non-touchscreen devices to bypass falsing"
   bug: "319809270"
}

flag {
   name: "override_suppress_overlay_condition"
   namespace: "systemui"
   description: "Allow override the conditions to suppress the clipboard overlay"
   bug: "358473717"
}

flag {
   name: "show_clipboard_indication"
   namespace: "systemui"
   description: "Show indication text under the clipboard overlay when copied something"
   bug: "361199935"
}

flag {
   name: "media_projection_dialog_behind_lockscreen"
   namespace: "systemui"
   description: "Ensure MediaProjection Dialog appears behind the lockscreen"
   bug: "351409536"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "check_lockscreen_gone_transition"
   namespace: "systemui"
   description: "Run notification pipeline when the lockscreen is not in gone transition for avoiding janky frames during unlocking animation"
   bug: "358301118"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "notes_role_qs_tile"
  namespace: "systemui"
  description: "Enables notes role qs tile which opens default notes role app in app bubbles"
  bug: "357863750"
}

flag {
  name: "ignore_touches_next_to_notification_shelf"
  namespace: "systemui"
  description: "The shelf can vertically overlap the unlock icon. Ignore touches if so."
  bug: "358424256"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "shade_window_goes_around"
  namespace: "systemui"
  description: "Enables the shade window to move between displays"
  bug: "362719719"
}

flag {
  name: "transition_race_condition"
  namespace: "systemui"
  description: "Thread-safe keyguard transitions"
  bug: "358533338"
  metadata {
       purpose: PURPOSE_BUGFIX
  }
}

flag {
   name: "media_projection_request_attribution_fix"
   namespace: "systemui"
   description: "Ensure MediaProjection consent requests are properly attributed"
   bug: "373581993"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "secondary_user_widget_host"
  namespace: "systemui"
  description: "Host communal widgets in the current secondary user on HSUM."
  bug: "373874416"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
   name: "show_toast_when_app_control_brightness"
   namespace: "systemui"
   description: "Showing the warning toast if the current running app window has controlled the brightness value."
   bug: "363225340"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "home_controls_dream_hsum"
  namespace: "systemui"
  description: "Enables the home controls dream in HSUM"
  bug: "370691405"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
   name: "only_show_media_stream_slider_in_single_volume_mode"
   namespace: "systemui"
   description: "When the device is in single volume mode, only show media stream slider and hide all other stream (e.g. call, notification, alarm, etc) sliders in volume panel"
   bug: "373729625"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
   name: "hide_ringer_button_in_single_volume_mode"
   namespace: "systemui"
   description: "When the device is in single volume mode, hide the ringer button because it doesn't work"
   bug: "374870615"
   metadata {
       purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "qs_tile_detailed_view"
    namespace: "systemui"
    description: "Enables the tile detailed view UI."
    bug: "374173773"
}

flag {
    name: "bouncer_ui_revamp"
    namespace: "systemui"
    description: "Updates to background (blur) for bouncer"
    bug: "370555003"
}

flag {
    name: "bouncer_ui_revamp_2"
    namespace: "systemui"
    description: "Updates to button animations and font changes for bouncer, bouncer_ui_revamp will cover only the blur changes."
    bug: "376491880"
}

flag {
  name: "disable_blurred_shade_visible"
  namespace: "systemui"
  description: "Removes the check for a blur radius when determining shade window visibility"
  bug: "394977231"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "notification_shade_blur"
    namespace: "systemui"
    description: "Enables the new blur effect on the Notification Shade."
    bug: "370555223"
}

flag {
    name: "notification_row_transparency"
    namespace: "systemui"
    description: "Enables transparency on the Notification Shade."
    bug: "392187268"
}

flag {
  name: "shade_expands_on_status_bar_long_press"
  namespace: "systemui"
  description: "Expands the shade on long press of any status bar"
  bug: "371224114"
}

flag {
  name: "shade_header_font_update"
  namespace: "systemui"
  description: "Updates the fonts of the shade header"
  bug: "393609960"
  is_fixed_read_only: true
}

flag {
    name: "keyboard_shortcut_helper_shortcut_customizer"
    namespace: "systemui"
    description: "An implementation of shortcut customizations through shortcut helper."
    bug: "365064144"
}

flag {
    name: "notification_reentrant_dismiss"
    namespace: "systemui"
    description: "Posts to avoid a crashing reentrant pipeline run"
    bug: "328328054"
    metadata {
        purpose: PURPOSE_BUGFIX
      }
}

flag {
    name: "stoppable_fgs_system_app"
    namespace: "systemui"
    description: "System app with foreground service can opt in to be stoppable."
    bug: "376564917"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "keyguard_transition_force_finish_on_screen_off"
    namespace: "systemui"
    description: "Forces KTF transitions to finish if the screen turns all the way off."
    bug: "331636736"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "double_tap_to_sleep"
    namespace: "systemui"
    description: "Enable Double Tap to Sleep"
    bug: "385194612"
}

flag {
    name: "spatial_model_app_pushback"
    namespace: "systemui"
    description: "Implement the depth push scaling effect on the current app when users pull down shade."
    bug: "370560660"
}

flag {
    name: "expanded_privacy_indicators_on_large_screen"
    namespace: "systemui"
    description: "Larger privacy indicators on large screen"
    bug: "381864715"
}

flag {
    name: "desktop_effects_qs_tile"
    namespace: "systemui"
    description: "Enables the QS tile for desktop effects"
    bug: "376797327"
}

flag {
   name: "hub_edit_mode_touch_adjustments"
   namespace: "systemui"
   description: "Makes selected widget toggleable in edit mode and modifier buttons mutually exclusive."
   bug: "383160667"
}

flag {
   name: "physical_notification_movement"
   namespace: "systemui"
   description: "Make notifications use physics based animations for movement"
   bug: "393581344"
}

flag {
   name: "glanceable_hub_direct_edit_mode"
   namespace: "systemui"
   description: "Invokes edit mode directly from long press in glanceable hub"
   bug: "382531177"
}

flag {
   name: "notification_appear_nonlinear"
   namespace: "systemui"
   description: "Fix linear usage of notification appear"
   bug: "397658189"
   metadata {
     purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "disable_shade_trackpad_two_finger_swipe"
  namespace: "systemui"
  description: "Disables expansion of the shade via two finger swipe on a trackpad"
  bug: "356804470"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
   name: "notification_animated_actions_treatment"
   namespace: "systemui"
   description: "Special UI treatment for animated actions and replys"
   bug: "383567383"
}

flag {
    name: "show_audio_sharing_slider_in_volume_panel"
    namespace: "cross_device_experiences"
    description: "Show two sliders in volume panel when audio sharing."
    bug: "336183611"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "magnetic_notification_swipes"
   namespace: "systemui"
   description: "Add support for magnetic behavior on horizontal notification swipes."
   bug: "390179908"
}

flag {
    name: "unfold_latency_tracking_fix"
    namespace: "systemui"
    description: "New implementation to track unfold latency that excludes broken cases"
    bug: "390649568"
    metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "permission_helper_ui_rich_ongoing"
  namespace: "systemui"
  description: "[RONs] Guards inline permission helper for demoting RONs [Guts/card version]"
  bug: "379186372"
}

flag {
  name: "permission_helper_inline_ui_rich_ongoing"
  namespace: "systemui"
  description: "[RONs] Guards inline permission helper for demoting RONs [Inline version]"
  bug: "379186372"
}

flag {
    name: "stabilize_heads_up_group_v2"
    namespace: "systemui"
    description: "Stabilize heads up groups in VisualStabilityCoordinator"
    bug: "357753857"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "hardware_color_styles"
    namespace: "systemui"
    description: "Enables loading initial colors based ion hardware color"
    bug: "347286986"
    metadata {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "shade_launch_accessibility"
   namespace: "systemui"
   description: "Intercept accessibility focus events for the Shade during launch animations to avoid stray TalkBack events."
   bug: "379222226"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
  name: "expand_collapse_privacy_dialog"
  namespace: "systemui"
  description: "Add expand and collapse actions to accessibility, to allow announcement in TalkBack when state changes."
  bug: "380161221"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "show_locked_by_your_watch_keyguard_indicator"
    namespace: "systemui"
    description: "Show a Locked by your watch indicator on the keyguard when the device is locked by the watch."
    bug: "387322459"
}

flag {
    name: "decouple_view_controller_in_animlib"
    namespace: "systemui"
    description: "Decouple view and controller in AnimLib."
    bug: "393241010"
}

flag {
    name: "clock_fidget_animation"
    namespace: "systemui"
    description: "Enables the clock fidget animation"
    bug: "364664389"
}

flag {
    name: "notifications_launch_radius"
    namespace: "systemui"
    description: "Fixes a discrepancy in corner radius between expanding notification and opening window during launch animations."
    bug: "396054791"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "skip_hide_sensitive_notif_animation"
    namespace: "systemui"
    description: "Skip hide sensitive notification animation when the showing layout is not changed."
    bug: "390624334"
    metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "lockscreen_font"
    namespace: "systemui"
    description: "Read-only flag for lockscreen font"
    bug: "393610165"
    is_fixed_read_only: true
}

flag {
    name: "always_compose_qs_ui_fragment"
    namespace: "systemui"
    description: "Have QQS and QS scenes in the Compose fragment always composed, not just when it should be visible."
    bug: "389985793"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "move_transition_animation_layer"
    namespace: "systemui"
    description: "Enables moving the launching window on top of the origin window in the Animation library."
    bug: "390422470"
}

flag {
    name: "status_bar_chips_return_animations"
    namespace: "systemui"
    description: "Enables return animations for status bar chips"
    bug: "202516970"
}

flag {
    name: "media_projection_grey_error_text"
    namespace: "systemui"
    description: "Set the error text color to grey when app sharing is hidden by the requesting app"
    bug: "400877402"
    metadata {
       purpose: PURPOSE_BUGFIX
    }
}

flag {
   name: "keyguard_wm_reorder_atms_calls"
   namespace: "systemui"
   description: "Calls ATMS#setLockScreenShown before default display callbacks in case they're slow"
   bug: "399693427"
   metadata {
        purpose: PURPOSE_BUGFIX
   }
}

flag {
    name: "extended_apps_shortcut_category"
    namespace: "systemui"
    description: "Allow users to add shortcuts to open apps that are not present in the apps category in shortcut helper by default"
    bug: "394290928"
}

flag {
    name: "use_aad_prox_sensor"
    namespace: "systemui"
    description: "Use AAD proximity sensor if flag is enabled and sensor is present"
    bug: "402534470"
}

flag {
    name: "enable_underlay"
    namespace: "ailabs"
    description: "Enable the underlay additional layer"
    bug: "403422950"
}

flag {
    name: "tv_global_actions_focus"
    namespace: "systemui"
    description: "Enables global actions focus on TV."
    bug: "402759931"
}

flag {
    name: "app_shortcut_removal_fix"
    namespace: "systemui"
    description: "During custom app shortcut removal, use custom shortcut command as key to find the right InputGestureData to be deleted"
    bug: "405058325"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}