summaryrefslogtreecommitdiff
path: root/atv_gms_overlay/frameworks/base/core/res/res/values/config.xml (plain)
blob: 3d8993ad32d80571d598dc96a710de9bb3f19fa0
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 <!-- Flag indicating that the media framework should not allow changes or mute on any
25 stream or master volumes. -->
26 <bool name="config_useFixedVolume">true</bool>
27
28 <!-- This string array should be overridden by the device to present a list of network
29 attributes. This is used by the connectivity manager to decide which networks can coexist
30 based on the hardware -->
31 <!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
32 [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] -->
33 <!-- the 5th element "restore-time" indicates the number of milliseconds to delay
34 before automatically restore the default connection. Set -1 if the connection
35 does not require auto-restore. -->
36 <!-- the 6th element indicates boot-time dependency-met value. -->
37 <string-array translatable="false" name="networkAttributes">
38 <item>"wifi,1,1,1,-1,true"</item>
39 <item>"ethernet,9,9,9,-1,true"</item>
40 </string-array>
41 <!-- Array of ConnectivityManager.TYPE_xxxx values allowable for tethering__-->
42 <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or
43 <!== [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH -->
44 <!-- [18,9] for TYPE_PPPOE, TYPE_ETHERNET -->
45 <integer-array translatable="false" name="config_tether_upstream_types">
46 <item>1</item>
47 <item>9</item>
48 </integer-array>
49 <!-- This string array should be overridden by the device to present a list of radio
50 attributes. This is used by the connectivity manager to decide which networks can coexist
51 based on the hardware -->
52 <!-- An Array of "[ConnectivityManager connectionType],
53 [# simultaneous connection types]" -->
54 <string-array translatable="false" name="radioAttributes">
55 <item>"1,1"</item>
56 <item>"9,1"</item>
57 </string-array>
58
59 <!-- Sets the package names whose certificates should be used to
60 verify location providers are allowed to be loaded. -->
61 <string-array name="config_locationProviderPackageNames" translatable="false">
62 <item>com.google.android.gms</item>
63 <item>com.android.location.fused</item>
64 </string-array>
65 <bool name="config_forceDefaultOrientation">false</bool>
66 <bool name="config_enableMultiUserUI">true</bool>
67
68 <!-- Disable AUDIO_BECOMING_NOISY notifications. -->
69 <bool name="config_sendAudioBecomingNoisy">false</bool>
70
71 <!-- This device is data-only. -->
72 <bool name="config_voice_capable">false</bool>
73
74 <!-- This device does not allow sms service. -->
75 <bool name="config_sms_capable">false</bool>
76
77 <!-- Control the default UI mode type to use when there is no other type override
78 happening. One of the following values (See Configuration.java):
79 1 UI_MODE_TYPE_NORMAL
80 4 UI_MODE_TYPE_TELEVISION
81 5 UI_MODE_TYPE_APPLIANCE
82 Any other values will have surprising consequences. -->
83 <integer name="config_defaultUiModeType">4</integer>
84
85 <!-- Control the behavior when the user long presses the home button.
86 0 - Nothing
87 1 - Launch all apps intent
88 2 - Launch assist intent
89 This needs to match the constants in
90 policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
91 -->
92 <integer name="config_longPressOnHomeBehavior">2</integer>
93
94 <bool name="config_defaultInTouchMode">false</bool>
95
96 <!-- Launcher customization requires AppWidgetService, but otherwise
97 home screen widgets are not supported on TV -->
98 <bool name="config_enableAppWidgetService">true</bool>
99
100 <!-- Package of the unbundled tv remote service which can connect to tv remote provider -->
101 <string translatable="false" name="config_tvRemoteServicePackage">com.google.android.tv.remote.service</string>
102 <bool name="config_useVolumeKeySounds">false</bool>
103 <!-- Override configuration check for dpad so that we always appear to have one -->
104 <bool name="config_hasPermanentDpad">true</bool>
105</resources>
106