1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** Copyright 2009, The Android Open Source Project 5** 6** Licensed under the Apache License, Version 2.0 (the "License"); 7** you may not use this file except in compliance with the License. 8** You may obtain a copy of the License at 9** 10** http://www.apache.org/licenses/LICENSE-2.0 11** 12** Unless required by applicable law or agreed to in writing, software 13** distributed under the License is distributed on an "AS IS" BASIS, 14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15** See the License for the specific language governing permissions and 16** limitations under the License. 17*/ 18--> 19 20<!-- These resources are around just to allow their values to be customized 21 for different hardware and product builds. --> 22<resources> 23 <!-- Whether to clip notification contents with a rounded rectangle. Might be expensive on 24 certain GPU's and thus can be turned off with only minimal visual impact. --> 25 <bool name="config_notifications_round_rect_clipping">true</bool> 26 27 <!-- Control whether status bar should distinguish HSPA data icon form UMTS 28 data icon on devices --> 29 <bool name="config_hspa_data_distinguishable">false</bool> 30 31 <!-- Component to be used as the status bar service. Must implement the IStatusBar 32 interface. This name is in the ComponentName flattened format (package/class) --> 33 <string name="config_statusBarComponent" translatable="false">com.android.systemui.statusbar.phone.StatusBar</string> 34 35 <!-- Component to be used as the recents implementation. Must implement the 36 RecentsImplementation interface. This name is in the ComponentName flattened format 37 (package/class) --> 38 <string name="config_recentsComponent" translatable="false">com.android.systemui.recents.OverviewProxyRecentsImpl</string> 39 40 <!-- Whether or not we show the number in the bar. --> 41 <bool name="config_statusBarShowNumber">false</bool> 42 43 <!-- For how long the lock screen can be on before the display turns off. --> 44 <integer name="config_lockScreenDisplayTimeout">10000</integer> 45 46 <!-- Vibrator pattern for camera gesture launch. --> 47 <integer-array translatable="false" name="config_cameraLaunchGestureVibePattern"> 48 <item>0</item> 49 <item>400</item> 50 </integer-array> 51 52 <!-- How many icons may be shown at once in the system bar. Includes any 53 slots that may be reused for things like IME control. --> 54 <integer name="config_maxNotificationIcons">5</integer> 55 56 <!-- Show phone (voice) signal strength instead of data in mobile RSSI. --> 57 <bool name="config_showPhoneRSSIForData">false</bool> 58 59 <!-- When true, show 1/2G networks as 3G. --> 60 <bool name="config_showMin3G">false</bool> 61 62 <!-- Show rotation lock toggle in System UI--> 63 <bool name="config_showRotationLock">true</bool> 64 65 <!-- Vibration duration for GlowPadView used in SearchPanelView --> 66 <integer translatable="false" name="config_vibration_duration">0</integer> 67 68 <!-- Vibration duration for GlowPadView used in SearchPanelView --> 69 <integer translatable="false" name="config_search_panel_view_vibration_duration">20</integer> 70 71 <!-- Show mic or phone affordance on Keyguard --> 72 <bool name="config_keyguardShowLeftAffordance">false</bool> 73 74 <!-- Show camera affordance on Keyguard --> 75 <bool name="config_keyguardShowCameraAffordance">false</bool> 76 77 <!-- The length of the vibration when the notification pops open. --> 78 <integer name="one_finger_pop_duration_ms">10</integer> 79 80 <!-- decay duration (from size_max -> size), in ms --> 81 <integer name="navigation_bar_deadzone_hold">333</integer> 82 <integer name="navigation_bar_deadzone_decay">333</integer> 83 84 <!-- orientation of the dead zone when touches have recently occurred elsewhere on screen --> 85 <integer name="navigation_bar_deadzone_orientation">0</integer> 86 87 <bool name="config_dead_zone_flash">false</bool> 88 89 <!-- Whether to enable dimming navigation buttons when wallpaper is not visible, should be 90 enabled for OLED devices to reduce/prevent burn in on the navigation bar (because of the 91 black background and static button placements) and disabled for all other devices to 92 prevent wasting cpu cycles on the dimming animation --> 93 <bool name="config_navigation_bar_enable_auto_dim_no_visible_wallpaper">true</bool> 94 95 <!-- The maximum number of tiles in the QuickQSPanel --> 96 <integer name="quick_qs_panel_max_columns">6</integer> 97 98 <!-- Whether QuickSettings is in a phone landscape --> 99 <bool name="quick_settings_wide">false</bool> 100 101 <!-- The number of columns in the QuickSettings --> 102 <integer name="quick_settings_num_columns">3</integer> 103 104 <!-- The number of rows in the QuickSettings --> 105 <integer name="quick_settings_max_rows">3</integer> 106 107 <!-- The number of columns that the top level tiles span in the QuickSettings --> 108 <integer name="quick_settings_user_time_settings_tile_span">1</integer> 109 110 <!-- The default tiles to display in QuickSettings --> 111 <string name="quick_settings_tiles_default" translatable="false"> 112 wifi,bt,dnd,flashlight,rotation,battery,cell,airplane,cast 113 </string> 114 115 <!-- The minimum number of tiles to display in QuickSettings --> 116 <integer name="quick_settings_min_num_tiles">6</integer> 117 118 <!-- Tiles native to System UI. Order should match "quick_settings_tiles_default" --> 119 <string name="quick_settings_tiles_stock" translatable="false"> 120 wifi,cell,battery,dnd,flashlight,rotation,bt,airplane,location,hotspot,inversion,saver,dark,work,cast,night 121 </string> 122 123 <!-- The tiles to display in QuickSettings --> 124 <string name="quick_settings_tiles" translatable="false">default</string> 125 126 <!-- The tiles to display in QuickSettings in retail mode --> 127 <string name="quick_settings_tiles_retail_mode" translatable="false"> 128 cell,battery,dnd,flashlight,rotation,location 129 </string> 130 131 <!-- Whether or not the RSSI tile is capitalized or not. --> 132 <bool name="quick_settings_rssi_tile_capitalization">true</bool> 133 134 <!-- Timeouts for brightness dialog to disappear --> 135 <integer name="quick_settings_brightness_dialog_short_timeout">2000</integer> 136 <integer name="quick_settings_brightness_dialog_long_timeout">4000</integer> 137 138 <!-- Show indicator for Wifi on but not connected. --> 139 <bool name="config_showWifiIndicatorWhenEnabled">false</bool> 140 141 <!-- The number of milliseconds before the heads up notification auto-dismisses. --> 142 <integer name="heads_up_notification_decay">5000</integer> 143 144 <!-- The number of milliseconds before the heads up notification sent automatically by the system auto-dismisses. --> 145 <integer name="auto_heads_up_notification_decay">3000</integer> 146 147 <!-- The number of milliseconds after a heads up notification is pushed back 148 before the app can interrupt again. --> 149 <integer name="heads_up_default_snooze_length_ms">60000</integer> 150 151 <!-- Minimum display time for a heads up notification, in milliseconds. --> 152 <integer name="heads_up_notification_minimum_time">2000</integer> 153 154 <!-- The number of milliseconds before the heads up notification accepts touches. --> 155 <integer name="touch_acceptance_delay">700</integer> 156 157 <!-- The number of milliseconds to extend ambient pulse by when prompted (e.g. on touch) --> 158 <integer name="ambient_notification_extension_time">10000</integer> 159 160 <!-- In multi-window, determines whether the stack where recents lives should grow from 161 the smallest position when being launched. --> 162 <bool name="recents_grow_in_multiwindow">true</bool> 163 164 <!-- Animation duration when using long press on recents to dock --> 165 <integer name="long_press_dock_anim_duration">250</integer> 166 167 <!-- Whether to enable KeyguardService or not --> 168 <bool name="config_enableKeyguardService">true</bool> 169 170 <!-- The maximum count of notifications on Keyguard. The rest will be collapsed in an overflow 171 card. --> 172 <integer name="keyguard_max_notification_count">3</integer> 173 174 <!-- Defines the implementation of the velocity tracker to be used for the panel expansion. Can 175 be 'platform' or 'noisy' (i.e. for noisy touch screens). --> 176 <string name="velocity_tracker_impl" translatable="false">platform</string> 177 178 <!-- Set to true to enable the user switcher on the keyguard. --> 179 <bool name="config_keyguardUserSwitcher">false</bool> 180 181 <!-- Doze: does this device support STATE_DOZE? --> 182 <bool name="doze_display_state_supported">false</bool> 183 184 <!-- Doze: does this device support STATE_DOZE_SUSPEND? --> 185 <bool name="doze_suspend_display_state_supported">false</bool> 186 187 <!-- Doze: should the significant motion sensor be used as a pulse signal? --> 188 <bool name="doze_pulse_on_significant_motion">false</bool> 189 190 <!-- Doze: check proximity sensor before pulsing? --> 191 <bool name="doze_proximity_check_before_pulse">true</bool> 192 193 <!-- Doze: should notifications be used as a pulse signal? --> 194 <bool name="doze_pulse_on_notifications">true</bool> 195 196 <!-- Doze: duration to avoid false pickup gestures triggered by notification vibrations --> 197 <integer name="doze_pickup_vibration_threshold">2000</integer> 198 199 <!-- Type of a sensor that provides a low-power estimate of the desired display 200 brightness, suitable to listen to while the device is asleep (e.g. during 201 always-on display) --> 202 <string name="doze_brightness_sensor_type" translatable="false"></string> 203 204 <!-- Override value to use for proximity sensor. --> 205 <string name="proximity_sensor_type" translatable="false">@string/doze_brightness_sensor_type</string> 206 207 <!-- If using proximity_sensor_type, specifies a threshold value to distinguish near and 208 far break points. A sensor value less than or equal to this is considered "near". --> 209 <item name="proximity_sensor_threshold" translatable="false" format="float" type="dimen"> 210 0</item> 211 212 <!-- Doze: pulse parameter - how long does it take to fade in? --> 213 <integer name="doze_pulse_duration_in">130</integer> 214 215 <!-- Doze: pulse parameter - once faded in, how long does it stay visible? --> 216 <integer name="doze_pulse_duration_visible">6000</integer> 217 218 <!-- Doze: pulse parameter - how long does it take to fade out? --> 219 <integer name="doze_pulse_duration_out">600</integer> 220 221 <!-- Doze: alpha to apply to small icons when dozing --> 222 <integer name="doze_small_icon_alpha">222</integer><!-- 87% of 0xff --> 223 224 <!-- Doze: Table that translates sensor values from the doze_brightness_sensor_type sensor 225 to brightness values; -1 means keeping the current brightness. --> 226 <integer-array name="config_doze_brightness_sensor_to_brightness"> 227 <item>-1</item> <!-- 0: OFF --> 228 <item>2</item> <!-- 1: NIGHT --> 229 <item>5</item> <!-- 2: LOW --> 230 <item>27</item> <!-- 3: HIGH --> 231 <item>28</item> <!-- 4: SUN --> 232 </integer-array> 233 234 <!-- Doze: Table that translates sensor values from the doze_brightness_sensor_type sensor 235 to an opacity value for a black scrim that is overlayed in AOD1. 236 Valid range is from 0 (transparent) to 255 (opaque). 237 -1 means keeping the current opacity. --> 238 <integer-array name="config_doze_brightness_sensor_to_scrim_opacity"> 239 <item>-1</item> <!-- 0: OFF --> 240 <item>0</item> <!-- 1: NIGHT --> 241 <item>0</item> <!-- 2: LOW --> 242 <item>0</item> <!-- 3: HIGH --> 243 <item>0</item> <!-- 4: SUN --> 244 </integer-array> 245 246 <!-- Doze: whether the double tap sensor reports 2D touch coordinates --> 247 <bool name="doze_double_tap_reports_touch_coordinates">false</bool> 248 249 <!-- Hotspot tile: number of days to show after feature is used. --> 250 <integer name="days_to_show_hotspot_tile">30</integer> 251 252 <!-- Color inversion tile: number of days to show after feature is used. --> 253 <integer name="days_to_show_color_inversion_tile">7</integer> 254 255 <!-- Number of times to show the strong alarm warning text in the volume dialog --> 256 <integer name="zen_mode_alarm_warning_threshold">5</integer> 257 258 <!-- Maximum number of total conditions to display in the zen mode selection panel --> 259 <integer name="zen_mode_max_conditions">5</integer> 260 261 <!-- Enable the default volume dialog --> 262 <bool name="enable_volume_ui">true</bool> 263 264 <!-- Enable the default volume level warning dialog --> 265 <bool name="enable_safety_warning">true</bool> 266 267 <!-- Whether to show operator name in the status bar --> 268 <bool name="config_showOperatorNameInStatusBar">false</bool> 269 270 <!-- Duration of the full carrier network change icon animation. --> 271 <integer name="carrier_network_change_anim_time">3000</integer> 272 273 <!-- Duration of the expansion animation in the volume dialog --> 274 <item name="volume_expand_animation_duration" type="integer">300</item> 275 276 <!-- Whether to show the full screen user switcher. --> 277 <bool name="config_enableFullscreenUserSwitcher">false</bool> 278 279 <!-- SystemUIFactory component --> 280 <string name="config_systemUIFactoryComponent" translatable="false">com.android.systemui.SystemUIFactory</string> 281 282 <!-- SystemUI Services: The classes of the stuff to start. --> 283 <string-array name="config_systemUIServiceComponents" translatable="false"> 284 <item>com.android.systemui.util.NotificationChannels</item> 285 <item>com.android.systemui.statusbar.CommandQueue$CommandQueueStart</item> 286 <item>com.android.systemui.keyguard.KeyguardViewMediator</item> 287 <item>com.android.systemui.recents.Recents</item> 288 <item>com.android.systemui.volume.VolumeUI</item> 289 <item>com.android.systemui.stackdivider.Divider</item> 290 <item>com.android.systemui.SystemBars</item> 291 <item>com.android.systemui.usb.StorageNotification</item> 292 <item>com.android.systemui.power.PowerUI</item> 293 <item>com.android.systemui.media.RingtonePlayer</item> 294 <item>com.android.systemui.keyboard.KeyboardUI</item> 295 <item>com.android.systemui.pip.PipUI</item> 296 <item>com.android.systemui.shortcut.ShortcutKeyDispatcher</item> 297 <item>@string/config_systemUIVendorServiceComponent</item> 298 <item>com.android.systemui.util.leak.GarbageMonitor$Service</item> 299 <item>com.android.systemui.LatencyTester</item> 300 <item>com.android.systemui.globalactions.GlobalActionsComponent</item> 301 <item>com.android.systemui.ScreenDecorations</item> 302 <item>com.android.systemui.biometrics.BiometricDialogImpl</item> 303 <item>com.android.systemui.SliceBroadcastRelayHandler</item> 304 <item>com.android.systemui.SizeCompatModeActivityController</item> 305 <item>com.android.systemui.statusbar.notification.InstantAppNotifier</item> 306 <item>com.android.systemui.theme.ThemeOverlayController</item> 307 </string-array> 308 309 <!-- SystemUI vender service, used in config_systemUIServiceComponents. --> 310 <string name="config_systemUIVendorServiceComponent" translatable="false">com.android.systemui.VendorServices</string> 311 312 <!-- SystemUI Services (per user): The classes of the stuff to start for each user. This is a subset of the config_systemUIServiceComponents --> 313 <string-array name="config_systemUIServiceComponentsPerUser" translatable="false"> 314 <item>com.android.systemui.util.NotificationChannels</item> 315 </string-array> 316 317 <!-- Nav bar button default ordering/layout --> 318 <string name="config_navBarLayout" translatable="false">left[.5W],back[1WC];home;recent[1WC],right[.5W]</string> 319 <string name="config_navBarLayoutQuickstep" translatable="false">back[1.7WC];home;contextual[1.7WC]</string> 320 <string name="config_navBarLayoutHandle" translatable="false">back[40AC];home_handle;ime_switcher[40AC]</string> 321 322 <bool name="quick_settings_show_full_alarm">false</bool> 323 324 <!-- Whether to show a warning notification when device's skin temperature is high. --> 325 <integer name="config_showTemperatureWarning">0</integer> 326 327 <!-- Whether to show a alarm dialog when device's usb port is overheating. --> 328 <integer name="config_showUsbPortAlarm">0</integer> 329 330 <!-- Accessibility actions --> 331 <item type="id" name="action_split_task_to_left" /> 332 <item type="id" name="action_split_task_to_right" /> 333 <item type="id" name="action_split_task_to_top" /> 334 335 <item type="id" name="action_toggle_overview"/> 336 337 <!-- Whether or not the gear icon on notifications should be shown. The gear is shown when the 338 the notification is not swiped enough to dismiss it. --> 339 <bool name="config_showNotificationGear">true</bool> 340 341 <!-- Whether or not a background should be drawn behind a notification. --> 342 <bool name="config_drawNotificationBackground">true</bool> 343 344 <!-- Whether or the notifications can be shown and dismissed with a drag. --> 345 <bool name="config_enableNotificationShadeDrag">true</bool> 346 347 <!-- Whether to show activity indicators in the status bar --> 348 <bool name="config_showActivity">false</bool> 349 350 <!-- Whether or not the button to clear all notifications will be shown. --> 351 <bool name="config_enableNotificationsClearAll">true</bool> 352 353 <!-- Whether or not to show the notification shelf that houses the icons of notifications that 354 have been scrolled off-screen. --> 355 <bool name="config_showNotificationShelf">true</bool> 356 357 <!-- Whether or not the notifications should always fade as they are dismissed. --> 358 <bool name="config_fadeNotificationsOnDismiss">false</bool> 359 360 <!-- Whether or not the parent of the notification row itself is being translated when swiped or 361 its children views. If true, then the contents are translated and vice versa. --> 362 <bool name="config_translateNotificationContentsOnSwipe">true</bool> 363 364 <!-- Whether or not the fade on the notification is based on the amount that it has been swiped 365 off-screen. --> 366 <bool name="config_fadeDependingOnAmountSwiped">false</bool> 367 368 <!-- Whether or not to show the expand button at the end of the notification header. --> 369 <bool name="config_showNotificationExpandButtonAtEnd">false</bool> 370 371 <!-- Whether or the notifications should be clipped to be reduced in height if it has been 372 scrolled to the top of the screen. --> 373 <bool name="config_clipNotificationScrollToTop">true</bool> 374 375 <!-- Whether or not the notification contents should be clipped to any background that is 376 set on the notification container. For example, if this value is true and the background 377 has rounded corners, then the contents will be clipped to those corners. --> 378 <bool name="config_clipNotificationsToOutline">false</bool> 379 380 <!-- Whether or not notifications that can be expanded will always be in their expanded state. 381 This value only affects notifications that are not a group of notifications from the same 382 applications. If this value is false, then only the first notification will be expanded; 383 the other notifications need to be manually expanded by the user. --> 384 <bool name="config_alwaysExpandNonGroupedNotifications">false</bool> 385 386 <!-- Whether or not an expandable notification can be manually expanded or collapsed by the 387 user. Grouped notifications are still expandable even if this value is false. --> 388 <bool name="config_enableNonGroupedNotificationExpand">true</bool> 389 390 <!-- Whether or not there should be dividing lines between child notifications when the 391 group has been expanded. --> 392 <bool name="config_showDividersWhenGroupNotificationExpanded">false</bool> 393 394 <!-- Whether or not the dividing lines should be shown when the container is expanding and 395 collapsing. If this value is true, then the lines will only show when the container has 396 been completely expanded. --> 397 <bool name="config_hideDividersDuringExpand">false</bool> 398 399 <!-- Whether or not child notifications that are part of a group will have shadows. --> 400 <bool name="config_enableShadowOnChildNotifications">true</bool> 401 402 <!-- Whether or not a view containing child notifications will have a custom background when 403 it has been expanded to reveal its children. --> 404 <bool name="config_showGroupNotificationBgWhenExpanded">false</bool> 405 406 <!-- Should we vibrate on an icon animation of the shelf. This should only be active if the 407 vibrator is capable of subtle vibrations --> 408 <bool name="config_vibrateOnIconAnimation">false</bool> 409 410 <!-- If true, enable the advance anti-falsing classifier on the lockscreen. On some devices it 411 does not work well, particularly with noisy touchscreens. Note that disabling it may 412 increase the rate of unintentional unlocks. --> 413 <bool name="config_lockscreenAntiFalsingClassifierEnabled">true</bool> 414 415 <!-- Snooze: default notificaiton snooze time. --> 416 <integer name="config_notification_snooze_time_default">60</integer> 417 418 <!-- Snooze: List of snooze values in integer minutes. --> 419 <integer-array name="config_notification_snooze_times"> 420 <item>15</item> 421 <item>30</item> 422 <item>60</item> 423 <item>120</item> 424 </integer-array> 425 426 <!-- Smart replies in notifications: Whether smart replies in notifications are enabled. --> 427 <bool name="config_smart_replies_in_notifications_enabled">true</bool> 428 429 <!-- Smart replies in notifications: Whether we disable the feature unless the app targets P --> 430 <bool name="config_smart_replies_in_notifications_requires_targeting_p">true</bool> 431 432 <!-- Smart replies in notifications: Maximum number of times SmartReplyView will try to find a 433 better (narrower) line-break for a double-line smart reply button. --> 434 <integer name="config_smart_replies_in_notifications_max_squeeze_remeasure_attempts">3</integer> 435 436 <!-- Smart replies in notifications: Whether by default tapping on a choice should let the user 437 edit the input before it is sent to the app. Developers can override this via 438 RemoteInput.Builder.setEditChoicesBeforeSending. --> 439 <bool name="config_smart_replies_in_notifications_edit_choices_before_sending">false</bool> 440 441 <!-- Smart replies in notifications: Whether smart suggestions in notifications are enabled in 442 heads-up notifications. --> 443 <bool name="config_smart_replies_in_notifications_show_in_heads_up">true</bool> 444 445 <!-- Smart replies in notifications: Minimum number of system generated smart replies that 446 should be shown in a notification. If we cannot show at least this many replies we instead 447 show none. --> 448 <integer name="config_smart_replies_in_notifications_min_num_system_generated_replies">0</integer> 449 450 <!-- Smart replies in notifications: Maximum number of smart actions to show in notifications. 451 --> 452 <integer name="config_smart_replies_in_notifications_max_num_actions">-1</integer> 453 454 <!-- Smart replies in notifications: Delay (ms) before smart suggestions are clickable, since 455 they were added. --> 456 <integer name="config_smart_replies_in_notifications_onclick_init_delay">200</integer> 457 458 <!-- Screenshot editing default activity. Must handle ACTION_EDIT image/png intents. 459 Blank sends the user to the Chooser first. 460 This name is in the ComponentName flattened format (package/class) --> 461 <string name="config_screenshotEditor" translatable="false"></string> 462 463 <!-- On debuggable builds, alert the user if SystemUI PSS goes over this number (in kb) --> 464 <integer name="watch_heap_limit">256000</integer> 465 466 <!-- Allow dragging the PIP to a location to close it --> 467 <bool name="config_pipEnableDismissDragToEdge">true</bool> 468 469 <!-- SystemUI Plugins that can be loaded on user builds. --> 470 <string-array name="config_pluginWhitelist" translatable="false"> 471 <item>com.android.systemui</item> 472 </string-array> 473 474 <integer name="ongoing_appops_dialog_max_apps">5</integer> 475 476 <!-- Launcher package name for overlaying icons. --> 477 <string name="launcher_overlayable_package" translatable="false">com.android.launcher3</string> 478 479 <!-- ThemePicker package name for overlaying icons. --> 480 <string name="themepicker_overlayable_package" translatable="false">com.android.wallpaper</string> 481 482 <!-- Default rounded corner curve (a Bezier). Must match (the curved path in) rounded.xml. 483 Note that while rounded.xml includes the entire path (including the horizontal and vertical 484 corner edges), this pulls out just the curve. 485 --> 486 <string name="config_rounded_mask" translatable="false">"M8,0C3.6,0,0,3.6,0,8"</string> 487 488 <!-- Preferred refresh rate at keyguard, if supported by the display --> 489 <integer name="config_keyguardRefreshRate">-1</integer> 490 491 <!-- Respect the drawable/rounded.xml that allow to customize as multiple radius corner path --> 492 <bool name="config_roundedCornerMultipleRadius">false</bool> 493 494 <!-- A path similar to frameworks/base/core/res/res/values/config.xml 495 config_mainBuiltInDisplayCutout that describes a path larger than the exact path of a display 496 cutout. If present as well as config_enableDisplayCutoutProtection is set to true, then 497 SystemUI will draw this "protection path" instead of the display cutout path that is normally 498 used for anti-aliasing. 499 500 This path will only be drawn when the front-facing camera turns on, otherwise the main 501 DisplayCutout path will be rendered 502 --> 503 <string translatable="false" name="config_frontBuiltInDisplayCutoutProtection"></string> 504 505 <!-- ID for the camera that needs extra protection --> 506 <string translatable="false" name="config_protectedCameraId"></string> 507 508 <!-- Comma-separated list of packages to exclude from camera protection e.g. 509 "com.android.systemui,com.android.xyz" --> 510 <string translatable="false" name="config_cameraProtectionExcludedPackages"></string> 511 512 <!-- Flag to turn on the rendering of the above path or not --> 513 <bool name="config_enableDisplayCutoutProtection">false</bool> 514 515</resources> 516