summaryrefslogtreecommitdiff
path: root/aosp_gms_overlay/frameworks/base/core/res/res/values/config.xml (plain)
blob: 049a7d3117cc0151f823acc9c252df54420d1290
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2012, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
21 <!-- Package name providing WebView implementation. -->
22 <!-- <string name="config_webViewPackageName" translatable="false">com.google.android.webview</string> -->
23
24 <!-- Sets the package names whose certificates should be used to
25 verify location providers are allowed to be loaded. -->
26 <string-array name="config_locationProviderPackageNames" translatable="false">
27 <item>com.google.android.gms</item>
28 <item>com.android.location.fused</item>
29 </string-array>
30 <bool name="config_defaultInTouchMode">false</bool>
31 <bool name="config_forceDefaultOrientation">false</bool>
32 <!-- Whether the device uses the default focus highlight when focus state isn't specified. -->
33 <bool name="config_useDefaultFocusHighlight">false</bool>
34
35 <!-- This string array should be overridden by the device to present a list of network
36 attributes. This is used by the connectivity manager to decide which networks can coexist
37 based on the hardware -->
38 <!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
39 [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] -->
40 <!-- the 5th element "restore-time" indicates the number of milliseconds to delay
41 before automatically restore the default connection. Set -1 if the connection
42 does not require auto-restore. -->
43 <!-- the 6th element indicates boot-time dependency-met value. -->
44 <string-array translatable="false" name="networkAttributes">
45 <item>"wifi,1,1,1,-1,true"</item>
46 <item>"ethernet,9,9,9,-1,true"</item>
47 </string-array>
48 <!-- Array of ConnectivityManager.TYPE_xxxx values allowable for tethering__-->
49 <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or
50 <!== [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH -->
51 <!-- [18,9] for TYPE_PPPOE, TYPE_ETHERNET -->
52 <integer-array translatable="false" name="config_tether_upstream_types">
53 <item>1</item>
54 <item>9</item>
55 </integer-array>
56 <!-- This string array should be overridden by the device to present a list of radio
57 attributes. This is used by the connectivity manager to decide which networks can coexist
58 based on the hardware -->
59 <!-- An Array of "[ConnectivityManager connectionType],
60 [# simultaneous connection types]" -->
61 <string-array translatable="false" name="radioAttributes">
62 <item>"1,1"</item>
63 <item>"9,1"</item>
64 </string-array>
65</resources>
66