1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright 2018 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17 18<resources> 19 <!-- Whether all activities should be single pane views or not. --> 20 <bool name="config_global_force_single_pane">true</bool> 21 <!-- Fully qualified class name for the homepage fragment. --> 22 <string name="config_homepage_fragment_class" translatable="false">com.android.car.settings.home.HomepageFragment</string> 23 <!-- Whether quick settings should be the root settings activity or not. --> 24 <bool name="config_is_quick_settings_root">false</bool> 25 <!-- Whether to show the launcher icon for settings home or not. --> 26 <bool name="config_enable_home_settings_icon">true</bool> 27 <!-- Whether to show the launcher icon for quick settings or not. --> 28 <bool name="config_enable_quick_settings_icon">false</bool> 29 <!-- Whether system_update_settings should be shown or not. --> 30 <bool name="config_show_system_update_settings">true</bool> 31 <!-- Whether Wi-Fi Mac address should be shown or not. --> 32 <bool name="config_show_wifi_mac_address">true</bool> 33 <!-- Whether to show regulatory info or not. --> 34 <bool name="config_show_regulatory_info">false</bool> 35 <!-- Whether premium SMS should be shown or not. --> 36 <bool name="config_show_premium_sms">true</bool> 37 <!-- Whether exit button in settings' root action bar should be shown or not --> 38 <bool name="config_show_settings_root_exit_icon">true</bool> 39 <!-- 40 Array of bluetooth device major classes that should be used for unbonded 41 device filter. 42 43 The values of the device major classes can be found in 44 android.bluetooth.BluetoothClass. If the array is empty, the device 45 filter will return all unbonded devices. 46 47 Example usage: 48 <integer-array name="config_unbonded_device_filter_allowlist"> 49 <item>0x0200</item> 50 </integer-array> 51 52 This filter would only return unbonded devices which correspond to the 53 major class for PHONE. 54 --> 55 <integer-array name="config_unbonded_device_filter_allowlist"/> 56 <!-- 57 Array of keys that should be used for determining how audio attribute 58 usage should be mapped to ringtone uris. 59 60 The values of the keys can be found in android.media.AudioAttributes. 61 The number of items in this array must equal the number of items in 62 config_ringtone_uri_map_value, and the usages are mapped to the ringtone 63 uri based on positions in the array. The lowest rank usage (based on the 64 order in car_volume_items.xml) in each audio group (in Car service's 65 car_volume_groups.xml) will be used to sound for a given volume group's 66 slider. 67 68 If empty, all ringtones will default to the default ringtone uri. 69 70 TODO(b/144382611): Instead of mapping by usage, we should map by audio 71 group so as to make it clearer to define the sound to be played with a 72 given slider. 73 --> 74 <integer-array name="config_ringtone_audio_attribute_usages_map_key"> 75 <item>5</item> 76 <item>4</item> 77 </integer-array> 78 <!-- 79 Array of values that should be used to determine how audio attribute 80 usage should be mapped to ringtone uris. 81 82 The values should be uri strings that can be parsed into Uri. The number 83 of items in this array must equal the number of items in 84 config_ringtone_audio_attributes_map_key, and the ringtone uris are 85 mapped to the audio attributes based on positions in the array. 86 87 If empty, all ringtones will default to the default ringtone uri. 88 --> 89 <string-array name="config_ringtone_uri_map_value"> 90 <item>content://settings/system/notification_sound</item> 91 <item>content://settings/system/alarm_alert</item> 92 </string-array> 93 <!-- Whether all preferences should always ignore UX Restrictions --> 94 <bool name="config_always_ignore_ux_restrictions">false</bool> 95 <!-- Array of Preference Keys that ignore UX Restrictions --> 96 <string-array name="config_ignore_ux_restrictions"> 97 <item>@string/pk_display_settings_entry</item> 98 <item>@string/pk_brightness_level</item> 99 <item>@string/pk_sound_settings_entry</item> 100 <item>@string/pk_volume_settings</item> 101 <item>@string/pk_network_and_internet_entry</item> 102 <item>@string/pk_wifi_settings_entry</item> 103 <item>@string/pk_bluetooth_settings_entry</item> 104 <item>@string/pk_bluetooth_paired_devices</item> 105 </string-array> 106 107 <!-- 108 Whether to allow chevrons on top-level preferences when enabled for 109 car-ui-lib preferences. 110 --> 111 <bool name="config_top_level_enable_chevrons">true</bool> 112 <!-- The shape for top-level icons: 0=RECTANGLE, 1=OVAL --> 113 <integer name="config_top_level_icon_shape" translatable="false">1</integer> 114 <!-- 115 Whether to always override the background color of the injecting application in favor of 116 the default color. 117 --> 118 <bool name="config_top_level_injection_background_always_use_default">false</bool> 119 <!-- Whether to include the preference summaries of injected top-level preferences. --> 120 <bool name="config_top_level_injection_enable_summaries">true</bool> 121 <!-- Array of injected setting categories that appear in the top-level menu. --> 122 <string-array name="config_top_level_injection_categories"> 123 <item>com.android.settings.category.wireless</item> 124 <item>com.android.settings.category.ia.device</item> 125 <item>com.android.settings.category.personal</item> 126 </string-array> 127 128 <!-- The component which listens for the enabling of developer options. --> 129 <string name="config_dev_options_module" translatable="false"> 130 com.android.car.developeroptions/.CarDevelopmentSettingsDashboardActivity 131 </string> 132 133 <!-- Settings intelligence package name --> 134 <string name="config_settingsintelligence_package_name" translatable="false"> 135 com.android.settings.intelligence 136 </string> 137</resources> 138