summaryrefslogtreecommitdiff
path: root/overlay/frameworks/base/core/res/res/values/config.xml (plain)
blob: b4ac675da5038161e036223f5576ce61b8f29742
1<resources>
2
3 <!-- This string array should be overridden by the device to present a list of network
4 attributes. This is used by the connectivity manager to decide which networks can coexist
5 based on the hardware -->
6 <!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
7 [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] -->
8 <!-- the 5th element "restore-time" indicates the number of milliseconds to delay
9 before automatically restore the default connection. Set -1 if the connection
10 does not require auto-restore. -->
11 <!-- the 6th element indicates boot-time dependency-met value. -->
12 <string-array translatable="false" name="networkAttributes">
13 <item>"wifi,1,1,1,-1,true"</item>
14 <item>"ethernet,9,9,9,-1,true"</item>
15 <item>"pppoe,8,8,1,-1,true"</item>
16 </string-array>
17 <!-- Array of ConnectivityManager.TYPE_xxxx values allowable for tethering__-->
18 <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or
19 <!== [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH -->
20 <!-- [18,9] for TYPE_PPPOE, TYPE_ETHERNET -->
21 <integer-array translatable="false" name="config_tether_upstream_types">
22 <item>1</item>
23 <item>8</item>
24 <item>9</item>
25 </integer-array>
26 <!-- This string array should be overridden by the device to present a list of radio
27 attributes. This is used by the connectivity manager to decide which networks can coexist
28 based on the hardware -->
29 <!-- An Array of "[ConnectivityManager connectionType],
30 [# simultaneous connection types]" -->
31 <string-array translatable="false" name="radioAttributes">
32 <item>"1,1"</item>
33 <item>"9,1"</item>
34 <item>"18,1"</item>
35 </string-array>
36
37 <!-- List of regexpressions describing the interface (if any) that represent tetherable
38 Wifi interfaces. If the device doesn't want to support tethering over Wifi this
39 should be empty. An example would be "softap.*" -->
40 <string-array translatable="false" name="config_tether_wifi_regexs">
41 <item>"wlan0"</item>
42 </string-array>
43
44 <!-- If supported and enabled, are dreams activated when asleep and charging? (by default) -->
45 <bool name="config_dreamsActivatedOnSleepByDefault">true</bool>
46 <!-- ComponentName of the default dream (Settings.Secure.DEFAULT_SCREENSAVER_COMPONENT) -->
47 <string name="config_dreamsDefaultComponent">com.android.deskclock/com.android.deskclock.Screensaver</string>
48
49 <!-- Whether WiFi display is supported by this device.
50 There are many prerequisites for this feature to work correctly.
51 Here are a few of them:
52 * The WiFi radio must support WiFi P2P.
53 * The WiFi radio must support concurrent connections to the WiFi display and
54 to an access point.
55 * The Audio Flinger audio_policy.conf file must specify a rule for the "r_submix"
56 remote submix module. This module is used to record and stream system
57 audio output to the WiFi display encoder in the media server.
58 * The remote submix module "audio.r_submix.default" must be installed on the device.
59 * The device must be provisioned with HDCP keys (for protected content).
60 -->
61 <!--<bool name="config_enableWifiDisplay">true</bool>-->
62 <!--<bool name="config_enableWifiP2pAutoAcceptInvitation">true</bool>-->
63 <bool name="config_sms_capable">false</bool>
64 <!-- Flag indicating whether the current device is "voice capable".
65 If true, this means that the device supports circuit-switched
66 (i.e. voice) phone calls over the telephony network, and is
67 allowed to display the in-call UI while a cellular voice call is
68 active. This can be overridden to false for "data only" devices
69 which can't make voice calls and don't support any in-call UI.
70
71 Note: this flag is subtly different from the
72 PackageManager.FEATURE_TELEPHONY system feature, which is
73 available on *any* device with a telephony radio, even if the
74 device is data-only. -->
75 <bool name="config_voice_capable">false</bool>
76 <!-- Flag indicating that this device does not rotate and will always remain in its default
77 orientation. Activities that desire to run in a non-compatible orientation will be run
78 from an emulated display within the physical display. -->
79 <bool name="config_forceDefaultOrientation">true</bool>
80
81 <!-- Enable overlay for all location components. -->
82 <bool name="config_enableNetworkLocationOverlay" translatable="false">true</bool>
83 <bool name="config_enableFusedLocationOverlay" translatable="false">true</bool>
84 <bool name="config_enableGeocoderOverlay" translatable="false">true</bool>
85 <bool name="config_enableGeofenceOverlay" translatable="false">true</bool>
86 <integer name="config_networkTransitionTimeout">2000</integer>
87
88 <!--
89 Sets the package names whose certificates should be used to
90 verify location providers are allowed to be loaded.
91 -->
92 <string-array name="config_locationProviderPackageNames" translatable="false">
93 <item>com.google.android.gms</item>
94 <item>com.android.location.fused</item>
95 </string-array>
96 <integer name="config_longPressOnPowerBehavior">3</integer>
97 <!-- Maximum number of supported users -->
98 <integer name="config_multiuserMaximumUsers">2</integer>
99 <bool name="config_enableMultiUserUI">true</bool>
100 <bool name="config_enableWallpaperService">false</bool>
101
102 <!-- Flag indicating that the media framework should not allow changes or mute on any
103 stream or master volumes. -->
104 <bool name="config_useFixedVolume">true</bool>
105</resources>
106