1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2021 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<resources> 18 <string-array name="dfu_binary_md5s" translatable="false"> 19 </string-array> 20 <string-array name="known_remote_labels" translatable="false"> 21 </string-array> 22 <string-array name="known_bluetooth_device_labels" translatable="false"> 23 <item>b06</item> 24 <item>remote</item> 25 <item>google storm</item> 26 <item>b21</item> 27 <item>g10</item> 28 <item>g20</item> 29 <item>Onn</item> 30 </string-array> 31 32 <!-- 33 List of BluetoothDeviceService updatable remotes. This list to used to provide update button in 34 settings page and can be overlaid. 35 --> 36 <string-array name="bt_device_service_updatable_labels" translatable="false"> 37 </string-array> 38 39 <!-- Upgrades from certain version would erase the connection information saved on the remote. For 40 this case, we would need to forget the connection on the host side and ask the user go 41 through pairing again. 42 Version format: [major version] [minor version] [Vendor ID] [Product ID] 43 Example: 1 23 AB 1F 44 --> 45 <string-array name="manual_reconnection_remote_versions" translatable="false"> 46 </string-array> 47 48 <!-- 49 List of official bluetooth device labels. This list is used to identify official 50 devices and can be overlaid. 51 --> 52 <string-array name="official_bt_device_labels" translatable="false"> 53 </string-array> 54 55 <!-- 56 List of official bluetooth device manufacturer names. This list is used to identify official 57 devices and can be overlaid. 58 --> 59 <string-array name="official_bt_device_manufacturer_names" translatable="false"> 60 </string-array> 61 62 <!-- 63 List of official bluetooth device model names. This list is used to identify official devices 64 and can be overlaid. 65 --> 66 <string-array name="official_bt_device_model_names" translatable="false"> 67 </string-array> 68 69 <!-- 70 List of bluetooth device model names whose "connect/disconnect" buttons should be hidden. This 71 can be overlaid for specific device. 72 --> 73 <string-array name="disconnect_button_hidden_device_model_names" translatable="false"> 74 </string-array> 75 76 <bool name="cec_settings_enabled">true</bool> 77 <bool name="axel_settings_enabled">false</bool> 78 79 <string name="custom_bluetooth_slice_provider_uri" translatable="false" /> 80 81 <!-- 82 Whether the ATV integrates the Find My Remote functionality with the on-device button. 83 If it does, the integration should respect the value of 84 Settings.Global.fmr_on_physical_button_enabled setting. 85 --> 86 <bool name="find_my_remote_integration_enabled">false</bool> 87 88 <!-- 89 Whether to show the HDMI-CEC settings in ConnectedDevicesSlice. This is different from 90 cec_settings_enabled that controls cec settings' overall availability. For example, we may set 91 cec_settings_enabled to [true] and show_cec_in_connected_settings to [false] to surface the 92 HDMI-CEC settings Slice somewhere else other than in ConnectedDevicesSlice. 93 --> 94 <bool name="show_cec_in_connected_settings">true</bool> 95 96 <!-- Whether to show the remote control icon on remote control update screen. --> 97 <bool name="show_remote_icon_in_dfu">true</bool> 98</resources> 99