1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** Copyright 2011, 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 24 <!-- This device is not "voice capable"; it's data-only. --> 25 <bool name="config_voice_capable">false</bool> 26 27 <!-- This device does not allow sms service. --> 28 <bool name="config_sms_capable">false</bool> 29 30 <!-- Separate software navigation bar required on this device. --> 31 <bool name="config_showNavigationBar">true</bool> 32 33 <!-- Integer indicating the framework scan interval in milliseconds. --> 34 <integer translatable="false" name="config_wifi_framework_scan_interval">10000</integer> 35 36 <!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION. 37 Please don't copy them, copy anything else. --> 38 39 <!-- the 5th element "resore-time" indicates the number of milliseconds to delay 40 before automatically restore the default connection. Set -1 if the connection 41 does not require auto-restore. --> 42 <!-- the 6th element indicates boot-time dependency-met value. --> 43 <string-array translatable="false" name="networkAttributes"> 44 <item>"wifi,1,1,1,-1,true"</item> 45 <item>"ethernet,9,9,2,-1,true"</item> 46 </string-array> 47 48 <!-- This string array should be overridden by the device to present a list of radio 49 attributes. This is used by the connectivity manager to decide which networks can coexist 50 based on the hardware --> 51 <!-- An Array of "[ConnectivityManager connectionType], 52 [# simultaneous connection types]" --> 53 <string-array translatable="false" name="radioAttributes"> 54 <item>"1,1"</item> 55 <item>"9,1"</item> 56 </string-array> 57 58 <!-- List of regexpressions describing the interface (if any) that represent tetherable 59 Wifi interfaces. If the device doesn't want to support tethering over Wifi this 60 should be empty. An example would be "softap.*" --> 61 <string-array translatable="false" name="config_tether_wifi_regexs"> 62 <item>"wlan0"</item> 63 <item>"softap.*"</item> 64 </string-array> 65 66 <!-- List of regexpressions describing the interface (if any) that represent tetherable 67 bluetooth interfaces. If the device doesn't want to support tethering over bluetooth this 68 should be empty. --> 69 <string-array translatable="false" name="config_tether_bluetooth_regexs"> 70 <item>"bt-pan"</item> 71 </string-array> 72 73 <!-- Array of allowable ConnectivityManager network types for tethering --> 74 <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or 75 [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH --> 76 <integer-array translatable="false" name="config_tether_upstream_types"> 77 <item>1</item> 78 <item>7</item> 79 </integer-array> 80 81</resources> 82