1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2007 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 18 19 <!-- If false, MIN is displayed. If true, MSID is displayed. --> 20 <bool name="config_msid_enable" translatable="false">false</bool> 21 22 <string name="additional_system_update" translatable="false"></string> 23 <string name="additional_system_update_menu" translatable="false"></string> 24 25 <!-- TODO: This is purely enforced by the interface, and does not affect what 26 strings may be inserted into the actual content provider. 27 With the addition of shortcuts, it seems more likely that users will 28 find this limiting; it would be good to have the interface work with 29 very long strings too. --> 30 <integer name="maximum_user_dictionary_word_length" translatable="false">48</integer> 31 32 <!-- Carrier_enabled editable --> 33 <bool name="config_allow_edit_carrier_enabled" translatable="false">false</bool> 34 35 <!-- When true enable color temperature setting. --> 36 <bool name="config_enableColorTemperature">false</bool> 37 38 <!-- Whether to show Camera laser sensor switch in Developer Options --> 39 <bool name="config_show_camera_laser_sensor">false</bool> 40 41 <!-- Fully-qualified class name for the implementation of the FeatureFactory to be instantiated. --> 42 <string name="config_featureFactory" translatable="false">com.android.settings.overlay.FeatureFactoryImpl</string> 43 44 <!-- Package name and fully-qualified class name for the wallpaper picker activity. --> 45 <string name="config_wallpaper_picker_package" translatable="false">com.android.settings</string> 46 <string name="config_wallpaper_picker_class" translatable="false">com.android.settings.Settings$WallpaperSettingsActivity</string> 47 <!-- Fully-qualified class name for the styles & wallpaper picker activity. --> 48 <string name="config_styles_and_wallpaper_picker_class" translatable="false"></string> 49 <!-- Action name for the wallpaper picker activity. --> 50 <string name="config_wallpaper_picker_action" translatable="false"></string> 51 <!-- Action name for the styles & wallpaper picker activity. --> 52 <string name="config_styles_and_wallpaper_picker_action" translatable="false"></string> 53 <!-- Intent extra for wallpaper picker activity. --> 54 <string name="config_wallpaper_picker_launch_extra" translatable="false">com.android.wallpaper.LAUNCH_SOURCE</string> 55 56 <!-- Manufacturer backup settings to launch --> 57 <string name="config_backup_settings_intent" translatable="false"></string> 58 59 <!-- Manufacturer backup settings label --> 60 <string name="config_backup_settings_label" translatable="true"></string> 61 62 <!-- Double twist sensor type and vendor used by gesture setting --> 63 <string name="gesture_double_twist_sensor_type" translatable="false"></string> 64 <string name="gesture_double_twist_sensor_vendor" translatable="false"></string> 65 66 <!-- If the Storage Manager settings are enabled. --> 67 <bool name="config_storage_manager_settings_enabled">false</bool> 68 69 <!-- If the support features are enabled. --> 70 <bool name="config_support_enabled">false</bool> 71 72 <!-- List containing the component names of pre-installed screen reader services. --> 73 <string-array name="config_preinstalled_screen_reader_services" translatable="false"> 74 <!-- 75 <item>com.example.package.first/com.example.class.FirstService</item> 76 <item>com.example.package.second/com.example.class.SecondService</item> 77 --> 78 </string-array> 79 80 <!-- List containing the component names of pre-installed captioning services. --> 81 <string-array name="config_preinstalled_captions_services" translatable="false"> 82 <!-- 83 <item>com.example.package.first/com.example.class.FirstService</item> 84 <item>com.example.package.second/com.example.class.SecondService</item> 85 --> 86 </string-array> 87 88 <!-- List containing the component names of pre-installed audio and captioning services. --> 89 <string-array name="config_preinstalled_audio_services" translatable="false"> 90 <!-- 91 <item>com.example.package.first/com.example.class.FirstService</item> 92 <item>com.example.package.second/com.example.class.SecondService</item> 93 --> 94 </string-array> 95 96 <!-- List containing the component names of pre-installed display services. --> 97 <string-array name="config_preinstalled_display_services" translatable="false"> 98 <!-- 99 <item>com.example.package.first/com.example.class.FirstService</item> 100 <item>com.example.package.second/com.example.class.SecondService</item> 101 --> 102 </string-array> 103 104 <!-- List containing the component names of pre-installed speech services. --> 105 <string-array name="config_preinstalled_speech_services" translatable="false"> 106 <!-- 107 <item>com.example.package.first/com.example.class.FirstService</item> 108 <item>com.example.package.second/com.example.class.SecondService</item> 109 --> 110 </string-array> 111 112 <!-- List containing the component names of pre-installed interaction control services. --> 113 <string-array name="config_preinstalled_interaction_control_services" translatable="false"> 114 <!-- 115 <item>com.example.package.first/com.example.class.FirstService</item> 116 <item>com.example.package.second/com.example.class.SecondService</item> 117 --> 118 </string-array> 119 120 <!-- List containing the order of services in screen reader category by {@link ComponentName}. 121 All {@link ComponentName} in a category need to be specified to guarantee correct 122 behavior.--> 123 <string-array name="config_order_screen_reader_services" translatable="false"> 124 <!-- 125 <item>com.example.package.first/com.example.class.FirstService</item> 126 <item>com.example.package.second/com.example.class.SecondService</item> 127 --> 128 </string-array> 129 130 <!-- List containing the order of services in captions category by preference key or 131 {@link ComponentName}. All preference keys in a category need to be specified to guarantee 132 correct behavior.--> 133 <string-array name="config_order_captions_services" translatable="false"> 134 <!-- 135 <item>com.example.package.first/com.example.class.FirstService</item> 136 <item>com.example.package.second/com.example.class.SecondService</item> 137 <item>captioning_preference_screen</item> 138 <item>rtt_setting</item> 139 <item>...</item> 140 --> 141 </string-array> 142 143 <!-- List containing the order of services in audio and caption category by preference key or 144 {@link ComponentName}. All preference keys in a category need to be specified to guarantee 145 correct behavior.--> 146 <string-array name="config_order_audio_services" translatable="false"> 147 <!-- 148 <item>com.example.package.first/com.example.class.FirstService</item> 149 <item>com.example.package.second/com.example.class.SecondService</item> 150 <item>toggle_primary_mono</item> 151 <item>seekbar_primary_balance</item> 152 <item>...</item> 153 --> 154 </string-array> 155 156 <!-- List containing the order of services in display category by preference key or 157 {@link ComponentName}. All preference keys in a category need to be specified to guarantee 158 correct behavior.--> 159 <string-array name="config_order_display_services" translatable="false"> 160 <!-- 161 <item>com.example.package.first/com.example.class.FirstService</item> 162 <item>com.example.package.second/com.example.class.SecondService</item> 163 <item>font_size_preference_screen</item> 164 <item>dark_ui_mode_accessibility</item> 165 <item>...</item> 166 --> 167 </string-array> 168 169 <!-- List containing the order of services in speech category by preference key or 170 {@link ComponentName}. All preference keys in a category need to be specified to guarantee 171 correct behavior.--> 172 <string-array name="config_order_speech_services" translatable="false"> 173 <!-- 174 <item>com.example.package.first/com.example.class.FirstService</item> 175 <item>com.example.package.second/com.example.class.SecondService</item> 176 <item>font_size_preference_screen</item> 177 <item>dark_ui_mode_accessibility</item> 178 <item>...</item> 179 --> 180 </string-array> 181 182 <!-- List containing the order of services in interaction control category by preference key or 183 {@link ComponentName}. All preference keys in a category need to be specified to guarantee 184 correct behavior.--> 185 <string-array name="config_order_interaction_control_services" translatable="false"> 186 <!-- 187 <item>com.example.package.first/com.example.class.FirstService</item> 188 <item>com.example.package.second/com.example.class.SecondService</item> 189 <item>autoclick_preference</item> 190 <item>toggle_power_button_ends_call_preference</item> 191 <item>...</item> 192 --> 193 </string-array> 194 195 <!-- List of packages that should be allowlisted for slice uri access. Do not translate --> 196 <string-array name="slice_allowlist_package_names" translatable="false"/> 197 198 <!-- Whether to use a UI variant that minimizes the number of UI elements on screen. This is 199 typically used when there is not enough space to display everything, because pattern view 200 doesn't interact well with scroll view --> 201 <bool name="config_lock_pattern_minimal_ui">true</bool> 202 203 <!-- List of a11y components on the device allowed to be enabled by Settings Slices --> 204 <string-array name="config_settings_slices_accessibility_components" translatable="false"/> 205 206 <!-- Whether or not to show the night light suggestion. --> 207 <bool name="config_night_light_suggestion_enabled">true</bool> 208 209 <!-- The number of vibration intensity levels supported by the device. 210 211 Note that this should correspond to the ability to vary the vibration amplitude, with 212 enough dynamic range to have at least as many distinct intensity levels as defined here. 213 214 Supported values are 1, 2, 3. If '1', the settings app will use a toggle for the settings, 215 otherwise a slider. If '3', the settings app maps intensities directly to the levels 216 supported by the Vibrator HAL APIs. If '2', then the levels will be mapped to 217 VIBRATION_INTENSITY_LOW and VIBRATION_INTENSITY_HIGH, which gives the most range for 218 scaling vibrations. The medium intensity will be skipped. 219 220 The default intensity values are configured at 221 frameworks/base/core/res/res/values/config.xml's config_default[type]VibrationIntensity. 222 Make sure that each default intensity value is consistent with the supported levels set 223 here. If this settings supports only 2 levels, for example, then the default intensity 224 should be either LOW (1) or HIGH (3). 225 --> 226 <integer name="config_vibration_supported_intensity_levels">1</integer> 227 228 <!-- Whether or not to show Media vibration settings in the vibration and haptics screen. 229 Can be overridden for specific product builds if the target device does not support it --> 230 <bool name="config_media_vibration_supported">true</bool> 231 232 <!-- 233 Whether or not the homepage should be powered by legacy suggestion (versus contextual cards) 234 Default to true as not all devices support contextual cards. 235 --> 236 <bool name="config_use_legacy_suggestion">true</bool> 237 238 <!-- Whether or not homepage should display user's account avatar --> 239 <bool name="config_show_avatar_in_homepage">false</bool> 240 241 <!-- Whether or not emergency info tile should display in device info page --> 242 <bool name="config_show_emergency_info_in_device_info">true</bool> 243 244 <!-- Whether or not branded account info tile should display in device info page --> 245 <bool name="config_show_branded_account_in_device_info">true</bool> 246 247 <!-- Whether or not device header widget tile should display in device info page --> 248 <bool name="config_show_device_header_in_device_info">true</bool> 249 250 <!-- Whether or not TopLevelSettings should force rounded icon for injected tiles --> 251 <bool name="config_force_rounded_icon_TopLevelSettings">true</bool> 252 253 <!-- Whether dismissal timestamp should be kept before deletion --> 254 <bool name="config_keep_contextual_card_dismissal_timestamp">false</bool> 255 256 <!-- Settings intelligence package name --> 257 <string name="config_settingsintelligence_package_name" translatable="false"> 258 com.android.settings.intelligence 259 </string> 260 261 <!-- Whether the confirmation for sim deletion is defaulted to be on or off--> 262 <bool name="config_sim_deletion_confirmation_default_on">false</bool> 263 264 <!-- Package Installer package name --> 265 <string name="config_package_installer_package_name" translatable="false"> 266 com.android.packageinstaller 267 </string> 268 269 <!-- Settings intelligence interaction log intent action --> 270 <string name="config_settingsintelligence_log_action" translatable="false"></string> 271 272 <!-- Whether Settings intelligence supports presenting Slices. --> 273 <bool name="config_settingsintelligence_slice_supported">false</bool> 274 275 <!-- AOSP Emergency app package name --> 276 <string name="config_aosp_emergency_package_name" translatable="false"> 277 com.android.emergency 278 </string> 279 280 <!-- AOSP Emergency app intent action --> 281 <string name="config_aosp_emergency_intent_action" translatable="false"> 282 android.settings.EDIT_EMERGENCY_INFO 283 </string> 284 285 <!-- Emergency app package name --> 286 <string name="config_emergency_package_name" translatable="false"> 287 com.android.emergency 288 </string> 289 290 <!-- Emergency app intent action --> 291 <string name="config_emergency_intent_action" translatable="false"> 292 android.settings.EDIT_EMERGENCY_INFO 293 </string> 294 295 <!-- Email address for the homepage contextual cards feedback --> 296 <string name="config_contextual_card_feedback_email" translatable="false"></string> 297 298 <!-- ComponentName to launch a vendor-specific enrollment activity if available --> 299 <string name="config_face_enroll" translatable="false"></string> 300 301 <!-- ComponentName to launch a vendor-specific posture guidance activity if available --> 302 <string name="config_face_enroll_guidance_page" translatable="false"></string> 303 304 <!-- Whether to support posture listening for face auth, default is 0(DEVICE_POSTURE_UNKNOWN) 305 means setting will try listening on device posture changes. 306 0 : DEVICE_POSTURE_UNKNOWN 307 1 : DEVICE_POSTURE_CLOSED 308 2 : DEVICE_POSTURE_HALF_OPENED 309 3 : DEVICE_POSTURE_OPENED 310 4 : DEVICE_POSTURE_FLIPPED 311 --> 312 <integer name="config_face_enroll_supported_posture">0</integer> 313 314 <!-- Whether to show the "less secure" info section on the face enroll intro screen --> 315 <bool name="config_face_intro_show_less_secure">false</bool> 316 317 <!-- Whether to show the "require eyes" info section on the face enroll intro screen --> 318 <bool name="config_face_intro_show_require_eyes">true</bool> 319 320 <!-- Whether to use the Lottie animation for the face education enrollment screen --> 321 <bool name="config_face_education_use_lottie">false</bool> 322 323 <!-- Whether to support enrollment during setup wizard flow --> 324 <bool name="config_suw_support_face_enroll">true</bool> 325 326 <!-- App intent --> 327 <string name="config_account_intent_uri" translatable="false"></string> 328 329 <!-- Whether or not the dock settings are to be displayed for this device when docked --> 330 <bool name="has_dock_settings">false</bool> 331 <!-- Whether there is a boot sounds checkbox --> 332 <bool name="has_boot_sounds">false</bool> 333 334 <!-- Display additional System Update menu if true --> 335 <bool name="config_additional_system_update_setting_enable">false</bool> 336 337 <!-- Whether the bluetooth activation confirmation dialogs should be auto dismissed. 338 Can be overridden for specific product builds. --> 339 <bool name="auto_confirm_bluetooth_activation_dialog">false</bool> 340 341 <!-- Whether the device name is shown in About device or not --> 342 <bool name="config_show_device_name">true</bool> 343 344 <!-- Whether to show a preference item for the manual in About phone --> 345 <bool name="config_show_manual">false</bool> 346 <!-- Whether to show a preference item for regulatory information in About phone --> 347 <bool name="config_show_regulatory_info">false</bool> 348 <!-- Package name of regulatory information overlay which provides mapping and contents. 349 Fetch resource from overlay package directly if this is set. --> 350 <string name="config_regulatory_info_overlay_package_name" translatable="false" /> 351 352 <!-- Whether to show a preference item for mobile plan --> 353 <bool name="config_show_mobile_plan">true</bool> 354 355 <!-- Whether none security option is hide or not (country specific). --> 356 <bool name="config_hide_none_security_option">false</bool> 357 358 <!-- Whether swipe security option is hidden or not --> 359 <bool name="config_hide_swipe_security_option">false</bool> 360 361 <!-- Whether Wi-Fi settings should be shown or not. 362 This also controls whether Wi-fi related sub-settings (e.g. Wi-Fi preferences) will 363 surface in search results or not.--> 364 <bool name="config_show_wifi_settings">true</bool> 365 366 <!-- Whether Wi-Fi hotspot settings should be shown or not. --> 367 <bool name="config_show_wifi_hotspot_settings">true</bool> 368 369 <!-- Whether Wi-Fi hotspot speed should be shown or not. --> 370 <bool name="config_show_wifi_hotspot_speed">true</bool> 371 372 <!-- Whether toggle_airplane is available or not. --> 373 <bool name="config_show_toggle_airplane">true</bool> 374 375 <!-- Whether private_dns_settings is available or not. --> 376 <bool name="config_show_private_dns_settings">true</bool> 377 378 <!-- Whether memory from app_info_settings is available or not. --> 379 <bool name="config_show_app_info_settings_memory">false</bool> 380 381 <!-- Whether battery from app_info_settings is available or not. --> 382 <bool name="config_show_app_info_settings_battery">true</bool> 383 384 <!-- Whether location scanning is available or not. --> 385 <bool name="config_show_location_scanning">true</bool> 386 387 <!-- Whether media_volume should be shown or not. --> 388 <bool name="config_show_media_volume">true</bool> 389 390 <!-- Whether alarm_volume should be shown or not. --> 391 <bool name="config_show_alarm_volume">true</bool> 392 393 <!-- Whether call_volume should be shown or not. --> 394 <bool name="config_show_call_volume">true</bool> 395 396 <!-- Whether notification_volume should be shown or not. --> 397 <bool name="config_show_notification_volume">true</bool> 398 399 <!-- Whether notification_ringtone should be shown or not. --> 400 <bool name="config_show_notification_ringtone">true</bool> 401 402 <!-- Whether screen_locking_sounds should be shown or not. --> 403 <bool name="config_show_screen_locking_sounds">true</bool> 404 405 <!-- Whether charging_sounds should be shown or not. --> 406 <bool name="config_show_charging_sounds">true</bool> 407 408 <!-- Whether touch_sounds should be shown or not. --> 409 <bool name="config_show_touch_sounds">true</bool> 410 411 <!-- Whether encryption_and_credentials_encryption_status should be shown or not. --> 412 <bool name="config_show_encryption_and_credentials_encryption_status">true</bool> 413 414 <!-- Whether premium_sms should be shown or not. --> 415 <bool name="config_show_premium_sms">true</bool> 416 417 <!-- Whether data_saver should be shown or not. --> 418 <bool name="config_show_data_saver">true</bool> 419 420 <!-- Whether enabled_vr_listeners should be shown or not. --> 421 <bool name="config_show_enabled_vr_listeners">true</bool> 422 423 <!-- Whether phone_language should be shown or not. --> 424 <bool name="config_show_phone_language">true</bool> 425 426 <!-- Whether virtual_keyboard_pref should be shown or not. --> 427 <bool name="config_show_virtual_keyboard_pref">true</bool> 428 429 <!-- Whether physical_keyboard_pref should be shown or not. --> 430 <bool name="config_show_physical_keyboard_pref">true</bool> 431 432 <!-- Whether spellcheckers_settings should be shown or not. --> 433 <bool name="config_show_spellcheckers_settings">true</bool> 434 435 <!-- Whether tts_settings_summary should be shown or not. --> 436 <bool name="config_show_tts_settings_summary">true</bool> 437 438 <!-- Whether pointer_speed should be shown or not. --> 439 <bool name="config_show_pointer_speed">true</bool> 440 441 <!-- Whether vibrate_input_devices should be shown or not. --> 442 <bool name="config_show_vibrate_input_devices">true</bool> 443 444 <!-- Whether manage_device_admin should be shown or not. --> 445 <bool name="config_show_manage_device_admin">true</bool> 446 447 <!-- Whether unlock_set_or_change should be shown or not. --> 448 <bool name="config_show_unlock_set_or_change">true</bool> 449 450 <!-- Whether screen_pinning_settings should be shown or not. --> 451 <bool name="config_show_screen_pinning_settings">true</bool> 452 453 <!-- Whether manage_trust_agents should be shown or not. --> 454 <bool name="config_show_manage_trust_agents">true</bool> 455 456 <!-- Whether show_password should be shown or not. --> 457 <bool name="config_show_show_password">true</bool> 458 459 <!-- Whether trust_agent_click_intent should be shown or not. --> 460 <bool name="config_show_trust_agent_click_intent">true</bool> 461 462 <!-- Whether wallpaper attribution should be shown or not. --> 463 <bool name="config_show_wallpaper_attribution">true</bool> 464 465 <!-- Whether assist_and_voice_input should be shown or not. --> 466 <bool name="config_show_assist_and_voice_input">true</bool> 467 468 <!-- Whether reset_dashboard should be shown or not. --> 469 <bool name="config_show_reset_dashboard">true</bool> 470 471 <!-- Whether system_update_settings should be shown or not. --> 472 <bool name="config_show_system_update_settings">true</bool> 473 474 <!-- Whether device_model should be shown or not. --> 475 <bool name="config_show_device_model">true</bool> 476 477 <!-- Whether top_level_accessibility should be shown or not. --> 478 <bool name="config_show_top_level_accessibility">true</bool> 479 480 <!-- Whether top_level_battery should be shown or not. --> 481 <bool name="config_show_top_level_battery">true</bool> 482 483 <!-- Whether to use compact battery status string. --> 484 <bool name="config_use_compact_battery_status">false</bool> 485 486 <!-- Whether top_level_connected_devices should be shown or not. --> 487 <bool name="config_show_top_level_connected_devices">true</bool> 488 489 <!-- Whether top_level_display should be shown or not. --> 490 <bool name="config_show_top_level_display">true</bool> 491 492 <!-- Whether wifi_ip_address should be shown or not. --> 493 <bool name="config_show_wifi_ip_address">true</bool> 494 495 <!-- Whether wifi_mac_address should be shown or not. --> 496 <bool name="config_show_wifi_mac_address">true</bool> 497 498 <!-- Whether to disable "Uninstall Updates" menu item for System apps or not. --> 499 <bool name="config_disable_uninstall_update">false</bool> 500 501 <!-- Slice Uri to query nearby devices. --> 502 <string name="config_nearby_devices_slice_uri" translatable="false">content://com.google.android.gms.nearby.fastpair/device_status_list_item</string> 503 504 <!-- BT Slice intent action. To support Settings 2 panel, BT slice can't use PendingIntent.send(). Therefore, here defines the Slice intent action. --> 505 <string name="config_bt_slice_intent_action" translatable="false"></string> 506 <!-- BT Slice pending intent action. To support Settings 2 panel, BT slice can't use PendingIntent.send(). Therefore, here defines the Slice pending intent action. --> 507 <string name="config_bt_slice_pending_intent_action" translatable="false"></string> 508 <!-- BT Slice EXTRA_INTENT. To support Settings 2 panel, BT slice can't use PendingIntent.send(). Therefore, here defines the Slice EXTRA_INTENT. --> 509 <string name="config_bt_slice_extra_intent" translatable="false"></string> 510 <!-- BT Slice EXTRA_PENDING_INTENT. To support Settings 2 panel, BT slice can't use PendingIntent.send(). Therefore, here defines the Slice EXTRA_PENDING_INTENT. --> 511 <string name="config_bt_slice_extra_pending_intent" translatable="false"></string> 512 513 <!-- Grayscale settings intent --> 514 <string name="config_grayscale_settings_intent" translatable="false"></string> 515 516 <!-- List containing the injected tile keys which are suppressed. --> 517 <string-array name="config_suppress_injected_tile_keys" translatable="false"/> 518 519 <!-- Reset application package name --> 520 <string-array name="config_skip_reset_apps_package_name" translatable="false"> 521 <item>android</item> 522 <item>com.android.providers.downloads</item> 523 <item>com.android.systemui</item> 524 <item>com.android.vending</item> 525 </string-array> 526 527 <!-- Settings panel keeps observe this uri --> 528 <string-array name="config_panel_keep_observe_uri" translatable="false"> 529 <item>content://com.android.settings.slices/intent/media_output_indicator</item> 530 </string-array> 531 532 <!-- List containing the apps cannot be changed the battery optimize modes --> 533 <string-array name="config_disable_optimization_mode_apps" translatable="false"> 534 </string-array> 535 536 <!-- Uri to query non-public Slice Uris. --> 537 <string name="config_non_public_slice_query_uri" translatable="false"></string> 538 539 <!-- RTT setting intent action --> 540 <string name="config_rtt_setting_intent_action" translatable="false"></string> 541 542 <!-- Package name of dialer supports RTT setting--> 543 <string name="config_rtt_setting_package_name" translatable="false"></string> 544 545 <!-- Whether nfc detection point preview image is available or not. --> 546 <bool name="config_nfc_detection_point">false</bool> 547 548 <!-- Whether to show Smooth Display feature in Settings Options --> 549 <bool name="config_show_smooth_display">false</bool> 550 551 <!-- Whether to show emergency settings in top-level Settings --> 552 <bool name="config_show_emergency_settings">true</bool> 553 554 <!-- Whether to show emergency gesture in Settings --> 555 <bool name="config_show_emergency_gesture_settings">true</bool> 556 557 <!-- Optional package name if another 1p app wants to take over the emergency gesture settings UI --> 558 <string name="emergency_gesture_settings_package"></string> 559 560 <!-- Whether to show the Preference for Adaptive connectivity --> 561 <bool name="config_show_adaptive_connectivity">false</bool> 562 563 <!-- Authority of advanced device battery prediction --> 564 <string name="config_battery_prediction_authority" translatable="false"></string> 565 566 <!-- Whether to handle slot change events --> 567 <bool name="config_handle_sim_slot_change">false</bool> 568 569 <!-- whether use partner overlay theme for outside setupwizard flow --> 570 <bool name="config_suc_use_partner_resource">false</bool> 571 572 <!-- Cell broacast receiver package name --> 573 <string name="config_cell_broadcast_receiver_package" translatable="false">com.android.cellbroadcastreceiver.module</string> 574 575 <!-- These media Uri are not defined in framework yet. Replace with framework defined variables once it's available. --> 576 <!-- Media Uri to view images storage category. --> 577 <string name="config_images_storage_category_uri" translatable="false">content://com.android.providers.media.documents/root/images_root</string> 578 579 <!-- Media Uri to view videos storage category. --> 580 <string name="config_videos_storage_category_uri" translatable="false">content://com.android.providers.media.documents/root/videos_root</string> 581 582 <!-- Media Uri to view audio storage category. --> 583 <string name="config_audio_storage_category_uri" translatable="false">content://com.android.providers.media.documents/root/audio_root</string> 584 585 <!-- Media Uri to view documents & other storage category. --> 586 <string name="config_documents_and_other_storage_category_uri" translatable="false">content://com.android.providers.media.documents/root/documents_root</string> 587 588 <!-- Whether to show Smart Storage toggle --> 589 <bool name="config_show_smart_storage_toggle">true</bool> 590 591 <!-- Display settings screen, Color mode options. Must be the same length and order as 592 config_color_mode_options_values below. Only the values that also appear in 593 frameworks/base/core/res/res/values/config.xml's config_availableColorModes are shown. --> 594 <string-array name="config_color_mode_options_strings" translatable="false"> 595 <item>@string/color_mode_option_natural</item> 596 <item>@string/color_mode_option_boosted</item> 597 <item>@string/color_mode_option_saturated</item> 598 <item>@string/color_mode_option_automatic</item> 599 </string-array> 600 601 <!-- Display settings screen, Color mode options. Must be the same length and order as 602 config_color_mode_options_strings above. Only the values that also appear in 603 frameworks/base/core/res/res/values/config.xml's config_availableColorModes are shown. --> 604 <integer-array name="config_color_mode_options_values" translatable="false"> 605 <item>0</item> 606 <item>1</item> 607 <item>2</item> 608 <item>3</item> 609 </integer-array> 610 611 <!-- App aspect ratio settings screen, user aspect ratio override options. Must be the same 612 length and order as config_userAspectRatioOverrideValues below. --> 613 <string-array name="config_userAspectRatioOverrideEntries" translatable="false"> 614 <item>@string/user_aspect_ratio_app_default</item> 615 <item>@string/user_aspect_ratio_fullscreen</item> 616 <item>@string/user_aspect_ratio_half_screen</item> 617 <item>@string/user_aspect_ratio_device_size</item> 618 <item>@string/user_aspect_ratio_16_9</item> 619 <item>@string/user_aspect_ratio_4_3</item> 620 <item>@string/user_aspect_ratio_3_2</item> 621 </string-array> 622 623 <!-- App aspect ratio settings screen, user aspect ratio override options. Must be the same 624 length and order as config_userAspectRatioOverrideEntries above. The values must 625 correspond to PackageManager.UserMinAspectRatio --> 626 <integer-array name="config_userAspectRatioOverrideValues" translatable="false"> 627 <item>0</item> <!-- USER_MIN_ASPECT_RATIO_UNSET --> 628 <item>6</item> <!-- USER_MIN_ASPECT_RATIO_FULLSCREEN --> 629 <item>1</item> <!-- USER_MIN_ASPECT_RATIO_SPLIT_SCREEN --> 630 <item>2</item> <!-- USER_MIN_ASPECT_RATIO_DISPLAY_SIZE --> 631 <item>4</item> <!-- USER_MIN_ASPECT_RATIO_16_9 --> 632 <item>3</item> <!-- USER_MIN_ASPECT_RATIO_4_3 --> 633 <item>5</item> <!-- USER_MIN_ASPECT_RATIO_3_2 --> 634 </integer-array> 635 636 <!-- The settings/preference description for each settable device state defined in the array 637 "config_perDeviceStateRotationLockDefaults". 638 The item in position "i" describes the auto-rotation setting for the device state also in 639 position "i" in the array "config_perDeviceStateRotationLockDefaults". --> 640 <string-array name="config_settableAutoRotationDeviceStatesDescriptions"> 641 <!-- Example: 642 <item>Auto-rotate when folded</item> 643 <item>@null</item> No description for state in position 1 644 <item>Auto-rotate when unfolded</item> 645 --> 646 </string-array> 647 648 <!-- The option list for switch screen resolution --> 649 <string-array name="config_screen_resolution_options_strings" translatable="false"> 650 <item>@string/screen_resolution_option_high</item> 651 <item>@string/screen_resolution_option_full</item> 652 </string-array> 653 654 <!-- Whether to aggregate for network selection list--> 655 <bool name="config_network_selection_list_aggregation_enabled">false</bool> 656 657 <!-- Max network scan search time in seconds --> 658 <integer name="config_network_scan_helper_max_search_time_sec">300</integer> 659 660 <!-- Whether to give option to add restricted profiles --> 661 <bool name="config_offer_restricted_profiles">false</bool> 662 663 <!-- An array of packages for which Applications whose per-app locale cannot be changed. --> 664 <string-array name="config_disallowed_app_localeChange_packages" translatable="false"> 665 <!-- 666 <item>com.example.package.first</item> 667 <item>com.example.package.second</item> 668 <item>...</item> 669 --> 670 </string-array> 671 672 <!-- The ratio to use when using the two-pane settings layout --> 673 <item name="config_activity_embed_split_ratio" format="float" type="dimen">0.3636</item> 674 675 <!-- The number of visible app icons while entering app list related pages for preloading. 676 Take the "Unrestricted data" page as the example, the visible app icons could be 15 677 on 6.4 inches screen size whether the font size and display size are both small. --> 678 <integer name="config_num_visible_app_icons">20</integer> 679 680 <!-- Whether the dream setup activity should be enabled as part of setupwizard --> 681 <bool name="dream_setup_supported">false</bool> 682 683 <!-- Whether to show communal settings at the top level. --> 684 <bool name="config_show_communal_settings">false</bool> 685 686 <!-- The extra value for battery tip --> 687 <integer name="config_battery_extra_tip_value">12</integer> 688 689 <!-- Whether to enable the advanced vpn feature. The default is not to. --> 690 <bool name="config_advanced_vpn_enabled">false</bool> 691 692 <!-- An array of uid name for which packages exempt from Wi-Fi permission check. --> 693 <string-array name="config_exempt_wifi_permission_uid_name" translatable="false"> 694 <item>@string/config_settingsintelligence_package_name</item> 695 <item>android.uid.system:1000</item> 696 </string-array> 697 698 <!-- The default value for RedactionInterstitial in SUW --> 699 <bool name="default_allow_sensitive_lockscreen_content">true</bool> 700 701 <!-- Whether to enable the app battery usage list page feature. --> 702 <bool name="config_app_battery_usage_list_enabled">true</bool> 703 704 <!-- Whether sim related information is visible to the end user. --> 705 <bool name="config_show_sim_info">true</bool> 706 707 <!-- In the case of receiving both help and progress message, display progress message. --> 708 <bool name="enrollment_progress_priority_over_help">false</bool> 709 <!-- Prioritize help message by their occurrence --> 710 <bool name="enrollment_prioritize_acquire_messages">false</bool> 711 <!-- Control messages displayed during enrollment --> 712 <bool name="enrollment_message_display_controller_flag">false</bool> 713 714 <!-- Whether the toggle for Auto-rotate with Face Detection should be shown. --> 715 <bool name="config_auto_rotate_face_detection_available">true</bool> 716 717 <!-- Whether to display the 3G option at network mode.--> 718 <bool name="config_display_network_mode_3g_option">true</bool> 719 720 <!-- The radius of the enrollment progress bar, in dp --> 721 <integer name="config_udfpsEnrollProgressBar" translatable="false"> 722 280 723 </integer> 724 725 <!-- Default udfps icon. Same path as ic_fingerprint.xml --> 726 <string name="config_udfpsIcon" translatable="false"> 727 M25.5,16.3283C28.47,14.8433 31.9167,14 35.5834,14C39.2501,14 42.6968,14.8433 45.6668,16.3283 728 M20,28.6669C22.7683,24.3402 28.7084,21.3335 35.5834,21.3335C42.4585,21.3335 48.3985, 729 24.3402 51.1669,28.6669 730 M22.8607,47.0002C21.834,44.3235 21.834,41.5002 21.834,41.5002C21.834, 731 34.4051 27.7374,28.6667 35.5841,28.6667C43.4308,28.6667 49.3341,34.4051 49.3341,41.5002 732 M49.3344,41.5003V42.0319C49.3344,44.7636 47.1161,47.0003 44.3661,47.0003C41.9461, 733 47.0003 39.8744,45.2403 39.471,42.857L38.9577, 734 39.7769C38.591,37.5953 36.7027,36.0002 34.5027, 735 36.0002C26.5826,36.0002 29.846,49.1087 35.291,50.6487 736 M44.9713,54.6267C42.5513,56.7167 39.2879,58.0001 35.5846,58.0001C32.2296, 737 58.0001 29.2229,56.9551 26.8945,55.195 738 </string> 739 740 <!-- Whether auto data switching on secondary SIM enables cross-SIM calling on both SIMs. --> 741 <bool name="config_auto_data_switch_enables_cross_sim_calling">false</bool> 742 743 <!-- Whether checking adaptive charging to define battery manager visibility. --> 744 <bool name="config_battery_manager_consider_ac">false</bool> 745 746 <!-- Whether to display Cloned Apps page in Settings (Settings > Apps > Cloned Apps).--> 747 <bool name="config_cloned_apps_page_enabled">false</bool> 748 749 <!-- Certificates of apps which are allowed to use activity embedding with Settings.--> 750 <string-array name="config_known_host_certs" translatable="false"> 751 <item></item> 752 </string-array> 753 754 <!-- List of packages that should be hidden for MVNO. Do not translate --> 755 <string-array name="datausage_hiding_carrier_service_package_names" translatable="false"/> 756 757 <!-- List of MVNO. Do not translate --> 758 <integer-array name="datausage_hiding_carrier_service_carrier_id" translatable="false"/> 759</resources> 760