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