config.xml revision a2bf987b742b328f56e71eab32a9fa37ec1961ca
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4** Copyright 2009, 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.  Do not translate. -->
22<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
23    <!-- Do not translate. Defines the slots for the right-hand side icons.  That is to say, the
24         icons in the status bar that are not notifications. -->
25    <string-array name="config_statusBarIcons">
26       <item><xliff:g id="id">ime</xliff:g></item>
27       <item><xliff:g id="id">sync_failing</xliff:g></item>
28       <item><xliff:g id="id">sync_active</xliff:g></item>
29       <item><xliff:g id="id">cast</xliff:g></item>
30       <item><xliff:g id="id">hotspot</xliff:g></item>
31       <item><xliff:g id="id">location</xliff:g></item>
32       <item><xliff:g id="id">bluetooth</xliff:g></item>
33       <item><xliff:g id="id">nfc</xliff:g></item>
34       <item><xliff:g id="id">tty</xliff:g></item>
35       <item><xliff:g id="id">speakerphone</xliff:g></item>
36       <item><xliff:g id="id">zen</xliff:g></item>
37       <item><xliff:g id="id">mute</xliff:g></item>
38       <item><xliff:g id="id">volume</xliff:g></item>
39       <item><xliff:g id="id">wifi</xliff:g></item>
40       <item><xliff:g id="id">cdma_eri</xliff:g></item>
41       <item><xliff:g id="id">data_connection</xliff:g></item>
42       <item><xliff:g id="id">phone_evdo_signal</xliff:g></item>
43       <item><xliff:g id="id">phone_signal</xliff:g></item>
44       <item><xliff:g id="id">battery</xliff:g></item>
45       <item><xliff:g id="id">alarm_clock</xliff:g></item>
46       <item><xliff:g id="id">secure</xliff:g></item>
47       <item><xliff:g id="id">clock</xliff:g></item>
48    </string-array>
49
50    <!-- Flag indicating whether the surface flinger has limited
51         alpha compositing functionality in hardware.  If set, the window
52         manager will disable alpha trasformation in animations where not
53         strictly needed. -->
54    <bool name="config_sf_limitedAlpha">false</bool>
55
56    <!-- Default value used to block data calls if ims is not
57         connected.  If you use the ims apn DCT will block
58         any other apn from connecting until ims apn is connected-->
59    <bool name="ImsConnectedDefaultValue">false</bool>
60
61    <!-- Flag indicating whether the surface flinger is inefficient
62         at performing a blur.  Used by parts of the UI to turn off
63         the blur effect where it isn't worth the performance hit.
64         As of Honeycomb, blurring is not supported anymore. -->
65    <bool name="config_sf_slowBlur">true</bool>
66
67    <!-- Flag indicating that the media framework should allow changing
68         master volume stream and nothing else . -->
69    <bool name="config_useMasterVolume">false</bool>
70
71    <!-- Flag indicating that the media framework should support playing of sounds on volume
72         key usage.  This adds noticeable additional overhead to volume key processing, so
73         is disableable for products for which it is irrelevant. -->
74    <bool name="config_useVolumeKeySounds">true</bool>
75
76    <!-- Array of integer pairs controlling the rate at which the master volume changes
77         in response to volume up and down key events.
78         The first integer of each pair is compared against the current master volume
79         (in range 0 to 100).
80         The last pair with first integer <= the current volume is chosen,
81         and the second integer of the pair indicates the amount to increase the master volume
82         when volume up is pressed. -->
83    <integer-array name="config_masterVolumeRamp">
84        <item>0</item>  <item>5</item>  <!-- default: always increase volume by 5% -->
85    </integer-array>
86
87    <!-- The attenuation in dB applied to the sound effects played
88         through AudioManager.playSoundEffect() when no volume is specified. -->
89    <integer name="config_soundEffectVolumeDb">-6</integer>
90
91    <!-- The attenuation in dB applied to the lock/unlock sounds. -->
92    <integer name="config_lockSoundVolumeDb">-6</integer>
93
94    <!-- Flag indicating whether the AUDIO_BECOMING_NOISY notification should
95         be sent during a change to the audio output device. -->
96    <bool name="config_sendAudioBecomingNoisy">true</bool>
97
98    <!-- The duration (in milliseconds) of a short animation. -->
99    <integer name="config_shortAnimTime">200</integer>
100
101    <!-- The duration (in milliseconds) of a medium-length animation. -->
102    <integer name="config_mediumAnimTime">400</integer>
103
104    <!-- The duration (in milliseconds) of a long animation. -->
105    <integer name="config_longAnimTime">500</integer>
106
107    <!-- The duration (in milliseconds) of the activity open/close and fragment open/close animations. -->
108    <integer name="config_activityShortDur">150</integer>
109    <integer name="config_activityDefaultDur">220</integer>
110
111    <!-- Duration for the dim animation behind a dialog.  This may be either
112         a percentage, which is relative to the duration of the enter/open
113         animation of the window being shown that is dimming behind, or it may
114         be an integer for a constant duration. -->
115    <fraction name="config_dimBehindFadeDuration">100%</fraction>
116
117    <!-- The maximum width we would prefer dialogs to be.  0 if there is no
118         maximum (let them grow as large as the screen).  Actual values are
119         specified for -large and -xlarge configurations. -->
120    <dimen name="config_prefDialogWidth">320dp</dimen>
121
122    <!-- Enables or disables fading edges when marquee is enabled in TextView.
123         Off by default, since the framebuffer readback used to implement the
124         fading edges is prohibitively expensive on most GPUs. -->
125    <bool name="config_ui_enableFadingMarquee">false</bool>
126
127    <!-- Whether dialogs should close automatically when the user touches outside
128         of them.  This should not normally be modified. -->
129    <bool name="config_closeDialogWhenTouchOutside">true</bool>
130
131    <!-- Device configuration indicating whether we should avoid using accelerated graphics
132         in certain places to reduce RAM footprint.  This is ignored if ro.config.low_ram
133         is true (in that case this is assumed true as well).  It can allow you to tune down
134         your device's memory use without going to the point of causing applications to turn
135         off features. -->
136    <bool name="config_avoidGfxAccel">false</bool>
137
138    <!-- Device configuration setting the minfree tunable in the lowmemorykiller in the kernel.
139         A high value will cause the lowmemorykiller to fire earlier, keeping more memory
140         in the file cache and preventing I/O thrashing, but allowing fewer processes to
141         stay in memory.  A low value will keep more processes in memory but may cause
142         thrashing if set too low.  Overrides the default value chosen by ActivityManager
143         based on screen size and total memory for the largest lowmemorykiller bucket, and
144         scaled proportionally to the smaller buckets.  -1 keeps the default. -->
145    <integer name="config_lowMemoryKillerMinFreeKbytesAbsolute">-1</integer>
146
147    <!-- Device configuration adjusting the minfree tunable in the lowmemorykiller in the
148         kernel.  A high value will cause the lowmemorykiller to fire earlier, keeping more
149         memory in the file cache and preventing I/O thrashing, but allowing fewer processes
150         to stay in memory.  A low value will keep more processes in memory but may cause
151         thrashing if set too low.  Directly added to the default value chosen by
152         ActivityManager based on screen size and total memory for the largest lowmemorykiller
153         bucket, and scaled proportionally to the smaller buckets. 0 keeps the default. -->
154    <integer name="config_lowMemoryKillerMinFreeKbytesAdjust">0</integer>
155
156    <!-- Device configuration setting the /proc/sys/vm/extra_free_kbytes tunable in the kernel
157         (if it exists).  A high value will increase the amount of memory that the kernel
158         tries to keep free, reducing allocation time and causing the lowmemorykiller to kill
159         earlier.  A low value allows more memory to be used by processes but may cause more
160         allocations to block waiting on disk I/O or lowmemorykiller.  Overrides the default
161         value chosen by ActivityManager based on screen size.  0 prevents keeping any extra
162         memory over what the kernel keeps by default.  -1 keeps the default. -->
163    <integer name="config_extraFreeKbytesAbsolute">-1</integer>
164
165    <!-- Device configuration adjusting the /proc/sys/vm/extra_free_kbytes tunable in the kernel
166         (if it exists).  0 uses the default value chosen by ActivityManager.  A positive value
167         will increase the amount of memory that the kernel tries to keep free, reducing
168         allocation time and causing the lowmemorykiller to kill earlier.  A negative value
169         allows more memory to be used by processes but may cause more allocations to block
170         waiting on disk I/O or lowmemorykiller.  Directly added to the default value chosen by
171         ActivityManager based on screen size. -->
172    <integer name="config_extraFreeKbytesAdjust">0</integer>
173
174    <!-- The duration (in milliseconds) that the radio will scan for a signal
175         when there's no network connection. If the scan doesn't timeout, use zero -->
176    <integer name="config_radioScanningTimeout">0</integer>
177
178    <!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
179         Please don't copy them, copy anything else. -->
180
181    <!-- This string array should be overridden by the device to present a list of network
182         attributes.  This is used by the connectivity manager to decide which networks can coexist
183         based on the hardware -->
184    <!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
185         [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet]  -->
186    <!-- the 5th element "resore-time" indicates the number of milliseconds to delay
187         before automatically restore the default connection.  Set -1 if the connection
188         does not require auto-restore. -->
189    <!-- the 6th element indicates boot-time dependency-met value. -->
190    <string-array translatable="false" name="networkAttributes">
191        <item>"wifi,1,1,1,-1,true"</item>
192        <item>"mobile,0,0,0,-1,true"</item>
193        <item>"mobile_mms,2,0,2,60000,true"</item>
194        <item>"mobile_supl,3,0,2,60000,true"</item>
195        <item>"mobile_hipri,5,0,3,60000,true"</item>
196        <item>"mobile_fota,10,0,2,60000,true"</item>
197        <item>"mobile_ims,11,0,2,60000,true"</item>
198        <item>"mobile_cbs,12,0,2,60000,true"</item>
199        <item>"wifi_p2p,13,1,0,-1,true"</item>
200        <item>"mobile_ia,14,0,2,-1,true"</item>
201        <item>"mobile_emergency,15,0,2,-1,true"</item>
202    </string-array>
203
204    <!-- Array of ConnectivityManager.TYPE_xxxx constants for networks that may only
205         be controlled by systemOrSignature apps.  -->
206    <integer-array translatable="false" name="config_protectedNetworks">
207        <item>10</item>
208        <item>11</item>
209        <item>12</item>
210        <item>14</item>
211        <item>15</item>
212    </integer-array>
213
214    <!-- This string array should be overridden by the device to present a list of radio
215         attributes.  This is used by the connectivity manager to decide which networks can coexist
216         based on the hardware -->
217    <!-- An Array of "[ConnectivityManager connectionType],
218                      [# simultaneous connection types]"  -->
219    <string-array translatable="false" name="radioAttributes">
220        <item>"1,1"</item>
221        <item>"0,1"</item>
222    </string-array>
223
224    <!-- Set of NetworkInfo.getType() that reflect data usage. -->
225    <integer-array translatable="false" name="config_data_usage_network_types">
226        <item>0</item> <!-- TYPE_MOBILE -->
227        <item>2</item> <!-- TYPE_MOBILE_MMS -->
228        <item>3</item> <!-- TYPE_MOBILE_SUPL -->
229        <item>4</item> <!-- TYPE_MOBILE_DUN -->
230        <item>5</item> <!-- TYPE_MOBILE_HIPRI -->
231        <item>10</item> <!-- TYPE_MOBILE_FOTA -->
232        <item>11</item> <!-- TYPE_MOBILE_IMS -->
233        <item>12</item> <!-- TYPE_MOBILE_CBS -->
234        <item>14</item> <!-- TYPE_MOBILE_IA -->
235    </integer-array>
236
237    <!-- The maximum duration (in milliseconds) we expect a network transition to take -->
238    <integer name="config_networkTransitionTimeout">60000</integer>
239
240    <!-- List of regexpressions describing the interface (if any) that represent tetherable
241         USB interfaces.  If the device doesn't want to support tething over USB this should
242         be empty.  An example would be "usb.*" -->
243    <string-array translatable="false" name="config_tether_usb_regexs">
244    </string-array>
245
246    <!-- List of regexpressions describing the interface (if any) that represent tetherable
247         Wifi interfaces.  If the device doesn't want to support tethering over Wifi this
248         should be empty.  An example would be "softap.*" -->
249    <string-array translatable="false" name="config_tether_wifi_regexs">
250    </string-array>
251
252    <!-- List of regexpressions describing the interface (if any) that represent tetherable
253         WiMAX interfaces.  If the device doesn't want to support tethering over Wifi this
254         should be empty.  An example would be "softap.*" -->
255    <string-array translatable="false" name="config_tether_wimax_regexs">
256    </string-array>
257
258    <!-- List of regexpressions describing the interface (if any) that represent tetherable
259         bluetooth interfaces.  If the device doesn't want to support tethering over bluetooth this
260         should be empty. -->
261    <string-array translatable="false" name="config_tether_bluetooth_regexs">
262    </string-array>
263
264    <!-- Max number of Bluetooth tethering connections allowed. If this is
265         updated config_tether_dhcp_range has to be updated appropriately. -->
266    <integer translateable="false" name="config_max_pan_devices">5</integer>
267
268    <!-- Dhcp range (min, max) to use for tethering purposes -->
269    <string-array translatable="false" name="config_tether_dhcp_range">
270    </string-array>
271
272    <!-- Regex of wired ethernet ifaces -->
273    <string translatable="false" name="config_ethernet_iface_regex">eth\\d</string>
274
275    <!-- If the mobile hotspot feature requires provisioning, a package name and class name
276        can be provided to launch a supported application that provisions the devices.
277
278        Example Usage:
279
280        String[] appDetails = getStringArray(R.array.config_mobile_hotspot_provision_app);
281        Intent intent = new Intent(Intent.ACTION_MAIN);
282        intent.setClassName(appDetails[0], appDetails[1]);
283        startActivityForResult(intent, 0);
284
285        public void onActivityResult(int requestCode, int resultCode, Intent intent) {
286            super.onActivityResult(requestCode, resultCode, intent);
287            if (requestCode == 0) {
288                if (resultCode == Activity.RESULT_OK) {
289                    //Mobile hotspot provisioning successful
290                } else {
291                    //Mobile hotspot provisioning failed
292                }
293            }
294
295        See src/com/android/settings/TetherSettings.java for more details.
296        -->
297    <!-- The first element is the package name and the second element is the class name
298         of the provisioning app -->
299    <string-array translatable="false" name="config_mobile_hotspot_provision_app">
300    <!--
301        <item>com.example.provisioning</item>
302        <item>com.example.provisioning.Activity</item>
303    -->
304    </string-array>
305
306    <!-- Activity name to enable wifi tethering after provisioning app succeeds -->
307    <string translatable="false" name="config_wifi_tether_enable">com.android.settings/.EnableWifiTether</string>
308
309    <!-- Array of ConnectivityManager.TYPE_xxxx values allowable for tethering -->
310    <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or
311    <!== [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH -->
312    <integer-array translatable="false" name="config_tether_upstream_types">
313        <item>0</item>
314        <item>1</item>
315        <item>5</item>
316        <item>7</item>
317        <item>9</item>
318    </integer-array>
319
320    <!-- If the DUN connection for this CDMA device supports more than just DUN -->
321    <!-- traffic you should list them here. -->
322    <!-- If this device is not CDMA this is ignored.  If this list is empty on -->
323    <!-- a DUN-requiring CDMA device, the DUN APN will just support just DUN. -->
324    <string-array translatable="false" name="config_cdma_dun_supported_types">
325    </string-array>
326
327    <!-- String containing the apn value for tethering.  May be overriden by secure settings
328         TETHER_DUN_APN.  Value is a comma separated series of strings:
329         "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type",
330         Or string format of ApnSettingV3.
331         note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN"
332         Multiple entries are separated by using string-array:
333         "<item>[ApnSettingV3]Name,apn,,,,,,,,,123,45,,mms|*,IPV6,IP,true,14,,,,,,,spn,testspn</item>
334          <item>[ApnSettingV3]Name1,apn2,,,,,,,,,123,46,,mms|*,IPV6,IP,true,12,,,,,,,,</item>" -->
335    <string-array translatable="false" name="config_tether_apndata">
336    </string-array>
337
338    <!-- Boolean indicating whether the wifi chipset has dual frequency band support -->
339    <bool translatable="false" name="config_wifi_dual_band_support">false</bool>
340
341    <!-- Device type information conforming to Annex B format in WiFi Direct specification.
342         The default represents a dual-mode smartphone -->
343    <string translatable="false" name="config_wifi_p2p_device_type">10-0050F204-5</string>
344
345    <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism.
346         This mechanism allows the host to remain in suspend state and the dongle to actively
347         scan and wake the host when a configured SSID is detected by the dongle. This chipset
348         capability can provide power savings when wifi needs to be always kept on. -->
349    <bool translatable="false" name="config_wifi_background_scan_support">false</bool>
350
351    <!-- Boolean indicating we re-try re-associating once upon disconnection and RSSI is high failure  -->
352    <bool translatable="true" name="config_wifi_enable_disconnection_debounce">true</bool>
353
354    <!-- Boolean indicating autojoin will prefer 5GHz and choose 5GHz BSSIDs -->
355    <bool translatable="true" name="config_wifi_enable_5GHz_preference">true</bool>
356
357    <!-- Integer specifying the basic autojoin parameters -->
358    <integer translatable="false" name="config_wifi_framework_5GHz_preference_boost_threshold">-65</integer>
359    <integer translatable="false" name="config_wifi_framework_5GHz_preference_boost_factor">5</integer>
360    <integer translatable="false" name="config_wifi_framework_current_association_hysteresis_high">16</integer>
361    <integer translatable="false" name="config_wifi_framework_current_association_hysteresis_low">10</integer>
362    <integer translatable="false" name="config_wifi_framework_5GHz_preference_penalty_threshold">-75</integer>
363    <integer translatable="false" name="config_wifi_framework_5GHz_preference_penalty_factor">2</integer>
364
365    <!-- Integer parameters of the wifi to cellular handover feature
366         wifi should not stick to bad networks -->
367    <integer translatable="false" name="config_wifi_framework_wifi_score_bad_rssi_threshold_5GHz">-82</integer>
368    <integer translatable="false" name="config_wifi_framework_wifi_score_low_rssi_threshold_5GHz">-72</integer>
369    <integer translatable="false" name="config_wifi_framework_wifi_score_good_rssi_threshold_5GHz">-60</integer>
370    <integer translatable="false" name="config_wifi_framework_wifi_score_bad_rssi_threshold_24GHz">-87</integer>
371    <integer translatable="false" name="config_wifi_framework_wifi_score_low_rssi_threshold_24GHz">-77</integer>
372    <integer translatable="false" name="config_wifi_framework_wifi_score_good_rssi_threshold_24GHz">-65</integer>
373    <integer translatable="false" name="config_wifi_framework_wifi_score_bad_link_speed_24">6</integer>
374    <integer translatable="false" name="config_wifi_framework_wifi_score_bad_link_speed_5">12</integer>
375    <integer translatable="false" name="config_wifi_framework_wifi_score_good_link_speed_24">24</integer>
376    <integer translatable="false" name="config_wifi_framework_wifi_score_good_link_speed_5">36</integer>
377    <string  translatable="false" name="config_wifi_random_mac_oui">DA-A1-19</string>
378
379    <bool translatable="false" name="config_wifi_framework_cellular_handover_enable_user_triggered_adjustment">true</bool>
380
381    <!-- Integer packet threshold used to allow scan while associated -->
382    <integer translatable="false" name="config_wifi_framework_associated_full_scan_tx_packet_threshold">5</integer>
383    <integer translatable="false" name="config_wifi_framework_associated_full_scan_rx_packet_threshold">10</integer>
384    <integer translatable="false" name="config_wifi_framework_associated_partial_scan_tx_packet_threshold">40</integer>
385    <integer translatable="false" name="config_wifi_framework_associated_partial_scan_rx_packet_threshold">80</integer>
386    <integer translatable="false" name="config_wifi_framework_network_switch_tx_packet_threshold">2</integer>
387    <integer translatable="false" name="config_wifi_framework_network_switch_rx_packet_threshold">20</integer>
388
389    <!-- Integer indicating wpa_supplicant scan interval in milliseconds -->
390    <integer translatable="false" name="config_wifi_supplicant_scan_interval">15000</integer>
391
392    <!-- Integer indicating wpa_supplicant scan interval when p2p is connected in milliseconds -->
393    <integer translatable="false" name="config_wifi_scan_interval_p2p_connected">60000</integer>
394
395    <!-- Integer indicating the framework scan interval in milliseconds. This is used in the scenario
396         where the chipset does not support background scanning (config_wifi_background_scan_suport
397         is false) to set up a periodic wake up scan so that the device can connect to a new access
398         point on the move. A value of 0 means no periodic scans will be used in the framework. -->
399    <integer translatable="false" name="config_wifi_framework_scan_interval">300000</integer>
400
401    <!-- Integer indicating associated partial scan interval in milliseconds -->
402    <integer translatable="false" name="config_wifi_framework_associated_scan_interval">20000</integer>
403
404    <!-- Integer indicating associated full scan backoff, representing a fraction: xx/8 -->
405    <integer translatable="false" name="config_wifi_framework_associated_full_scan_backoff">12</integer>
406
407    <!-- Integer indicating associated full scan max interval in milliseconds -->
408    <integer translatable="false" name="config_wifi_framework_associated_full_scan_max_interval">300000</integer>
409
410    <!-- Integer indicating associated full scan max total dwell time in milliseconds -->
411    <integer translatable="false" name="config_wifi_framework_associated_full_scan_max_total_dwell_time">500</integer>
412
413    <!-- Integer indicating associated full scan max num active channels -->
414    <integer translatable="false" name="config_wifi_framework_associated_partial_scan_max_num_active_channels">6</integer>
415
416    <!-- Integer indicating associated full scan max num passive channels -->
417    <integer translatable="false" name="config_wifi_framework_associated_partial_scan_max_num_passive_channels">3</integer>
418
419    <!-- Integer indicating number of association errors leading to blacklisting of the network -->
420    <integer translatable="false" name="config_wifi_framework_max_connection_errors_to_blacklist">4</integer>
421
422    <!-- Integer indicating number of authentication errors leading to blacklisting of the network -->
423    <integer translatable="false" name="config_wifi_framework_max_auth_errors_to_blacklist">4</integer>
424
425    <!-- Integer indicating minimum blacklisting delay of a wofo configuration due to connectin or auth errors -->
426    <integer translatable="false" name="config_wifi_framework_network_black_list_min_time_milli">120000</integer>
427
428    <!-- Boolean indicating associated scan are allowed -->
429    <bool translatable="false" name="config_wifi_framework_enable_associated_autojoin_scan">true</bool>
430
431    <!-- Boolean indicating associated network selection is allowed -->
432    <bool translatable="false" name="config_wifi_framework_enable_associated_network_selection">true</bool>
433
434    <!-- Boolean indicating that wifi only link configuratios that have exact same credentials (i.e PSK) -->
435    <bool translatable="false" name="config_wifi_only_link_same_credential_configurations">true</bool>
436
437    <!-- Wifi driver stop delay, in milliseconds.
438         Default value is 2 minutes. -->
439    <integer translatable="false" name="config_wifi_driver_stop_delay">120000</integer>
440
441    <!-- Wifi driver supports batched scan -->
442    <bool translatable="false" name="config_wifi_batched_scan_supported">false</bool>
443
444    <!-- Flag indicating whether the we should enable the automatic brightness in Settings.
445         Software implementation will be used if config_hardware_auto_brightness_available is not set -->
446    <bool name="config_automatic_brightness_available">false</bool>
447
448    <!-- Don't name config resources like this.  It should look like config_annoyDianne -->
449    <bool name="config_annoy_dianne">true</bool>
450
451    <!-- XXXXXX END OF RESOURCES USING WRONG NAMING CONVENTION -->
452
453    <!-- If this is true, the screen will come on when you unplug usb/power/whatever. -->
454    <bool name="config_unplugTurnsOnScreen">false</bool>
455
456    <!-- Set this true only if the device has separate attention and notification lights. -->
457    <bool name="config_useAttentionLight">false</bool>
458
459    <!-- If this is true, the screen will fade off. -->
460    <bool name="config_animateScreenLights">false</bool>
461
462    <!-- If this is true, key chords can be used to take a screenshot on the device. -->
463    <bool name="config_enableScreenshotChord">true</bool>
464
465    <!-- If this is true, allow wake from theater mode when plugged in or unplugged. -->
466    <bool name="config_allowTheaterModeWakeFromUnplug">false</bool>
467    <!-- If this is true, allow wake from theater mode from gesture. -->
468    <bool name="config_allowTheaterModeWakeFromGesture">false</bool>
469    <!-- If this is true, allow wake from theater mode from camera lens cover is switched. -->
470    <bool name="config_allowTheaterModeWakeFromCameraLens">false</bool>
471    <!-- If this is true, allow wake from theater mode from power key press. -->
472    <bool name="config_allowTheaterModeWakeFromPowerKey">true</bool>
473    <!-- If this is true, allow wake from theater mode from regular key press. Setting this value to
474         true implies config_allowTheaterModeWakeFromPowerKey is also true-->
475    <bool name="config_allowTheaterModeWakeFromKey">false</bool>
476    <!-- If this is true, allow wake from theater mode from motion. -->
477    <bool name="config_allowTheaterModeWakeFromMotion">false</bool>
478    <!-- If this is true, allow wake from theater mode from motion. -->
479    <bool name="config_allowTheaterModeWakeFromMotionWhenNotDreaming">false</bool>
480    <!-- If this is true, allow wake from theater mode from lid switch. -->
481    <bool name="config_allowTheaterModeWakeFromLidSwitch">false</bool>
482    <!-- If this is true, allow wake from theater mode when docked. -->
483    <bool name="config_allowTheaterModeWakeFromDock">false</bool>
484    <!-- If this is true, allow wake from theater mode from window layout flag. -->
485    <bool name="config_allowTheaterModeWakeFromWindowLayout">false</bool>
486    <!-- If this is true, go to sleep when theater mode is enabled from button press -->
487    <bool name="config_goToSleepOnButtonPressTheaterMode">true</bool>
488
489    <!-- Auto-rotation behavior -->
490
491    <!-- If true, enables auto-rotation features using the accelerometer.
492         Otherwise, auto-rotation is disabled.  Applications may still request
493         to use specific orientations but the sensor is ignored and sensor-based
494         orientations are not available.  Furthermore, all auto-rotation related
495         settings are omitted from the system UI.  In certain situations we may
496         still use the accelerometer to determine the orientation, such as when
497         docked if the dock is configured to enable the accelerometer. -->
498    <bool name="config_supportAutoRotation">true</bool>
499
500    <!-- If true, the screen can be rotated via the accelerometer in all 4
501         rotations as the default behavior. -->
502    <bool name="config_allowAllRotations">false</bool>
503
504    <!-- If true, the direction rotation is applied to get to an application's requested
505         orientation is reversed.  Normally, the model is that landscape is
506         clockwise from portrait; thus on a portrait device an app requesting
507         landscape will cause a clockwise rotation, and on a landscape device an
508         app requesting portrait will cause a counter-clockwise rotation.  Setting
509         true here reverses that logic. -->
510    <bool name="config_reverseDefaultRotation">false</bool>
511
512    <!-- Lid switch behavior -->
513
514    <!-- The number of degrees to rotate the display when the keyboard is open.
515         A value of -1 means no change in orientation by default. -->
516    <integer name="config_lidOpenRotation">-1</integer>
517
518    <!-- Indicate whether the lid state impacts the accessibility of
519         the physical keyboard.  0 means it doesn't, 1 means it is accessible
520         when the lid is open, 2 means it is accessible when the lid is
521         closed.  The default is 0. -->
522    <integer name="config_lidKeyboardAccessibility">0</integer>
523
524    <!-- Indicate whether the lid state impacts the accessibility of
525         the navigation buttons.  0 means it doesn't, 1 means it is accessible
526         when the lid is open, 2 means it is accessible when the lid is
527         closed.  The default is 0. -->
528    <integer name="config_lidNavigationAccessibility">0</integer>
529
530    <!-- Indicate whether closing the lid causes the device to go to sleep and opening
531         it causes the device to wake up.
532         The default is false. -->
533    <bool name="config_lidControlsSleep">false</bool>
534
535    <!-- Desk dock behavior -->
536
537    <!-- The number of degrees to rotate the display when the device is in a desk dock.
538         A value of -1 means no change in orientation by default. -->
539    <integer name="config_deskDockRotation">-1</integer>
540
541    <!-- Control whether being in the desk dock (and powered) always
542         keeps the screen on.  By default it stays on when plugged in to
543         AC.  0 will not keep it on; or together 1 to stay on when plugged
544         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
545    <integer name="config_deskDockKeepsScreenOn">1</integer>
546
547    <!-- Control whether being in the desk dock should enable accelerometer
548         based screen orientation.  This defaults to true because it is
549         common for desk docks to be sold in a variety of form factors
550         with different orientations.  Since we cannot always tell these docks
551         apart and the docks cannot report their true orientation on their own,
552         we rely on gravity to determine the effective orientation. -->
553    <bool name="config_deskDockEnablesAccelerometer">true</bool>
554
555    <!-- Car dock behavior -->
556
557    <!-- The number of degrees to rotate the display when the device is in a car dock.
558         A value of -1 means no change in orientation by default. -->
559    <integer name="config_carDockRotation">-1</integer>
560
561    <!-- Control whether being in the car dock (and powered) always
562         keeps the screen on.  By default it stays on when plugged in to
563         AC.  0 will not keep it on; or together 1 to stay on when plugged
564         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
565    <integer name="config_carDockKeepsScreenOn">1</integer>
566
567    <!-- Control whether being in the car dock should enable accelerometer based
568         screen orientation.  This defaults to true because putting a device in
569         a car dock make the accelerometer more a physical input (like a lid). -->
570
571    <bool name="config_carDockEnablesAccelerometer">true</bool>
572
573    <!-- HDMI behavior -->
574
575    <!-- The number of degrees to rotate the display when the device has HDMI connected
576         but is not in a dock.  A value of -1 means no change in orientation by default.
577         Use -1 except on older devices whose Hardware Composer HAL does not
578         provide full support for multiple displays.  -->
579    <integer name="config_undockedHdmiRotation">-1</integer>
580
581    <!-- Control the default UI mode type to use when there is no other type override
582         happening.  One of the following values (See Configuration.java):
583             1  UI_MODE_TYPE_NORMAL
584             4  UI_MODE_TYPE_TELEVISION
585             5  UI_MODE_TYPE_APPLIANCE
586             6  UI_MODE_TYPE_WATCH
587         Any other values will have surprising consequences. -->
588    <integer name="config_defaultUiModeType">1</integer>
589
590    <!-- Indicate whether to allow the device to suspend when the screen is off
591         due to the proximity sensor.  This resource should only be set to true
592         if the sensor HAL correctly handles the proximity sensor as a wake-up source.
593         Otherwise, the device may fail to wake out of suspend reliably.
594         The default is false. -->
595    <bool name="config_suspendWhenScreenOffDueToProximity">false</bool>
596
597    <!-- Control the behavior when the user long presses the power button.
598            0 - Nothing
599            1 - Global actions menu
600            2 - Power off (with confirmation)
601            3 - Power off (without confirmation)
602    -->
603    <integer name="config_longPressOnPowerBehavior">1</integer>
604
605    <!-- Control the behavior when the user short presses the power button.
606            0 - Nothing
607            1 - Go to sleep (doze)
608            2 - Really go to sleep (don't doze)
609            3 - Really go to sleep and go home (don't doze)
610    -->
611    <integer name="config_shortPressOnPowerBehavior">1</integer>
612
613    <!-- Control the behavior when the user double presses the power button.
614            0 - Nothing
615            1 - Toggle theater mode setting
616            2 - Brightness boost
617    -->
618    <integer name="config_doublePressOnPowerBehavior">0</integer>
619
620    <!-- Control the behavior when the user triple presses the power button.
621            0 - Nothing
622            1 - Toggle theater mode setting
623            2 - Brightness boost
624    -->
625    <integer name="config_triplePressOnPowerBehavior">0</integer>
626
627    <!-- Package name for default keyguard appwidget [DO NOT TRANSLATE] -->
628    <string name="widget_default_package_name"></string>
629
630    <!-- Class name for default keyguard appwidget [DO NOT TRANSLATE] -->
631    <string name="widget_default_class_name"></string>
632
633    <!-- Indicate whether the SD card is accessible without removing the battery. -->
634    <bool name="config_batterySdCardAccessibility">false</bool>
635
636    <!-- List of file paths for USB host busses to exclude from USB host support.
637         For example, if the first USB bus on the device is used to communicate
638         with the modem or some other restricted hardware, add "/dev/bus/usb/001/"
639         to this list.  If this is empty, no parts of the host USB bus will be excluded.
640    -->
641    <string-array name="config_usbHostBlacklist" translatable="false">
642    </string-array>
643
644    <!-- List of paths to serial ports that are available to the serial manager.
645         for example, /dev/ttyUSB0
646    -->
647    <string-array translatable="false" name="config_serialPorts">
648    </string-array>
649
650    <!-- Vibrator pattern for feedback about a long screen/key press -->
651    <integer-array name="config_longPressVibePattern">
652        <item>0</item>
653        <item>1</item>
654        <item>20</item>
655        <item>21</item>
656    </integer-array>
657
658    <!-- Vibrator pattern for feedback about touching a virtual key -->
659    <integer-array name="config_virtualKeyVibePattern">
660        <item>0</item>
661        <item>10</item>
662        <item>20</item>
663        <item>30</item>
664    </integer-array>
665
666    <!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
667    <integer-array name="config_keyboardTapVibePattern">
668        <item>40</item>
669    </integer-array>
670
671    <!-- Vibrator pattern for feedback when selecting an hour/minute tick of a Clock -->
672    <integer-array name="config_clockTickVibePattern">
673        <item>125</item>
674        <item>30</item>
675    </integer-array>
676
677    <!-- Vibrator pattern for feedback when selecting a day/month/year date of a Calendar -->
678    <integer-array name="config_calendarDateVibePattern">
679        <item>125</item>
680        <item>30</item>
681    </integer-array>
682
683    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
684    <integer-array name="config_safeModeDisabledVibePattern">
685        <item>0</item>
686        <item>1</item>
687        <item>20</item>
688        <item>21</item>
689    </integer-array>
690
691    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
692    <integer-array name="config_safeModeEnabledVibePattern">
693        <item>0</item>
694        <item>1</item>
695        <item>20</item>
696        <item>21</item>
697        <item>500</item>
698        <item>600</item>
699    </integer-array>
700
701    <!-- Vibrator pattern for feedback about hitting a scroll barrier -->
702    <integer-array name="config_scrollBarrierVibePattern">
703        <item>0</item>
704        <item>15</item>
705        <item>10</item>
706        <item>10</item>
707    </integer-array>
708
709    <bool name="config_use_strict_phone_number_comparation">false</bool>
710
711    <!-- Display low battery warning when battery level dips to this value.
712         Also, the battery stats are flushed to disk when we hit this level.  -->
713    <integer name="config_criticalBatteryWarningLevel">5</integer>
714
715    <!-- Shutdown if the battery temperature exceeds (this value * 0.1) Celsius. -->
716    <integer name="config_shutdownBatteryTemperature">680</integer>
717
718    <!-- Display low battery warning when battery level dips to this value -->
719    <integer name="config_lowBatteryWarningLevel">15</integer>
720
721    <!-- Close low battery warning when battery level reaches the lowBatteryWarningLevel
722         plus this -->
723    <integer name="config_lowBatteryCloseWarningBump">5</integer>
724
725    <!-- Default color for notification LED. -->
726    <color name="config_defaultNotificationColor">#ffffffff</color>
727
728    <!-- Default LED on time for notification LED in milliseconds. -->
729    <integer name="config_defaultNotificationLedOn">500</integer>
730
731    <!-- Default LED off time for notification LED in milliseconds. -->
732    <integer name="config_defaultNotificationLedOff">2000</integer>
733
734    <!-- Default value for led color when battery is low on charge -->
735    <integer name="config_notificationsBatteryLowARGB">0xFFFF0000</integer>
736
737    <!-- Default value for led color when battery is medium charged -->
738    <integer name="config_notificationsBatteryMediumARGB">0xFFFFFF00</integer>
739
740    <!-- Default value for led color when battery is fully charged -->
741    <integer name="config_notificationsBatteryFullARGB">0xFF00FF00</integer>
742
743    <!-- Default value for LED on time when the battery is low on charge in miliseconds -->
744    <integer name="config_notificationsBatteryLedOn">125</integer>
745
746    <!-- Is the notification LED intrusive? Used to decide if there should be a disable option -->
747    <bool name="config_intrusiveNotificationLed">false</bool>
748
749    <!-- Default value for LED off time when the battery is low on charge in miliseconds -->
750    <integer name="config_notificationsBatteryLedOff">2875</integer>
751
752    <!-- Number of notifications to keep in the notification service historical archive -->
753    <integer name="config_notificationServiceArchiveSize">100</integer>
754
755    <!-- Allow the menu hard key to be disabled in LockScreen on some devices -->
756    <bool name="config_disableMenuKeyInLockScreen">false</bool>
757
758    <!-- Don't show lock screen before unlock screen (PIN/pattern/password) -->
759    <bool name="config_enableLockBeforeUnlockScreen">false</bool>
760
761    <!-- Disable lockscreen rotation by default -->
762    <bool name="config_enableLockScreenRotation">false</bool>
763
764    <!-- Enable lockscreen translucent decor by default -->
765    <bool name="config_enableLockScreenTranslucentDecor">true</bool>
766
767    <!-- Enable translucent decor by default -->
768    <bool name="config_enableTranslucentDecor">true</bool>
769
770    <!-- Is the device capable of hot swapping an UICC Card -->
771    <bool name="config_hotswapCapable">false</bool>
772
773    <!-- Enable puk unlockscreen by default.
774         If unlock screen is disabled, the puk should be unlocked through Emergency Dialer -->
775    <bool name="config_enable_puk_unlock_screen">true</bool>
776
777    <!-- Enable emergency call when sim is locked or puk locked. Some countries/carriers do not
778         allow emergency calls to be placed without the IMSI, which is locked in the SIM.
779         If so, this should be set to 'false' in an overlay. -->
780    <bool name="config_enable_emergency_call_while_sim_locked">true</bool>
781
782    <!-- Control the behavior when the user long presses the home button.
783            0 - Nothing
784            1 - Recent apps view in SystemUI
785            2 - Launch assist intent
786         This needs to match the constants in
787         policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
788    -->
789    <integer name="config_longPressOnHomeBehavior">0</integer>
790
791    <!-- Control the behavior when the user double-taps the home button.
792            0 - Nothing
793            1 - Recent apps view in SystemUI
794         This needs to match the constants in
795         policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
796    -->
797    <integer name="config_doubleTapOnHomeBehavior">0</integer>
798
799    <!-- Minimum screen brightness setting allowed by the power manager.
800         The user is forbidden from setting the brightness below this level. -->
801    <integer name="config_screenBrightnessSettingMinimum">10</integer>
802
803    <!-- Maximum screen brightness allowed by the power manager.
804         The user is forbidden from setting the brightness above this level. -->
805    <integer name="config_screenBrightnessSettingMaximum">255</integer>
806
807    <!-- Default screen brightness setting.
808         Must be in the range specified by minimum and maximum. -->
809    <integer name="config_screenBrightnessSettingDefault">102</integer>
810
811    <!-- Screen brightness used to dim the screen while dozing in a very low power state.
812         May be less than the minimum allowed brightness setting
813         that can be set by the user. -->
814    <integer name="config_screenBrightnessDoze">1</integer>
815
816    <!-- Allow automatic adjusting of the screen brightness while dozing in low power state. -->
817    <bool name="config_allowAutoBrightnessWhileDozing">false</bool>
818
819    <!-- If we allow automatic adjustment of screen brightness while dozing, how many times we want
820         to reduce it to preserve the battery. Value of 100% means no scaling. -->
821    <fraction name="config_screenAutoBrightnessDozeScaleFactor">100%</fraction>
822
823    <!-- Screen brightness used to dim the screen when the user activity
824         timeout expires.  May be less than the minimum allowed brightness setting
825         that can be set by the user. -->
826    <integer name="config_screenBrightnessDim">10</integer>
827
828    <!-- Minimum allowable screen brightness to use in a very dark room.
829         This value sets the floor for the darkest possible auto-brightness
830         adjustment.  It is expected to be somewhat less than the first entry in
831         config_autoBrightnessLcdBacklightValues so as to allow the user to have
832         some range of adjustment to dim the screen further than usual in very
833         dark rooms. The contents of the screen must still be clearly visible
834         in darkness (although they may not be visible in a bright room). -->
835    <integer name="config_screenBrightnessDark">1</integer>
836
837    <!-- Array of light sensor LUX values to define our levels for auto backlight brightness support.
838         The N entries of this array define N + 1 control points as follows:
839         (1-based arrays)
840
841         Point 1:            (0, value[1]):             lux <= 0
842         Point 2:     (level[1], value[2]):  0        < lux <= level[1]
843         Point 3:     (level[2], value[3]):  level[2] < lux <= level[3]
844         ...
845         Point N+1: (level[N], value[N+1]):  level[N] < lux
846
847         The control points must be strictly increasing.  Each control point
848         corresponds to an entry in the brightness backlight values arrays.
849         For example, if LUX == level[1] (first element of the levels array)
850         then the brightness will be determined by value[2] (second element
851         of the brightness values array).
852
853         Spline interpolation is used to determine the auto-brightness
854         backlight values for LUX levels between these control points.
855
856         Must be overridden in platform specific overlays -->
857    <integer-array name="config_autoBrightnessLevels">
858    </integer-array>
859
860    <!-- Array of output values for LCD backlight corresponding to the LUX values
861         in the config_autoBrightnessLevels array.  This array should have size one greater
862         than the size of the config_autoBrightnessLevels array.
863         The brightness values must be between 0 and 255 and be non-decreasing.
864         This must be overridden in platform specific overlays -->
865    <integer-array name="config_autoBrightnessLcdBacklightValues">
866    </integer-array>
867
868    <!-- Array of output values for button backlight corresponding to the LUX values
869         in the config_autoBrightnessLevels array.  This array should have size one greater
870         than the size of the config_autoBrightnessLevels array.
871         The brightness values must be between 0 and 255 and be non-decreasing.
872         This must be overridden in platform specific overlays -->
873    <integer-array name="config_autoBrightnessButtonBacklightValues">
874    </integer-array>
875
876    <!-- Array of output values for keyboard backlight corresponding to the LUX values
877         in the config_autoBrightnessLevels array.  This array should have size one greater
878         than the size of the config_autoBrightnessLevels array.
879         The brightness values must be between 0 and 255 and be non-decreasing.
880         This must be overridden in platform specific overlays -->
881    <integer-array name="config_autoBrightnessKeyboardBacklightValues">
882    </integer-array>
883
884    <!-- Amount of time it takes for the light sensor to warm up in milliseconds.
885         For this time after the screen turns on, the Power Manager
886         will not debounce light sensor readings -->
887    <integer name="config_lightSensorWarmupTime">0</integer>
888
889    <!-- Enables swipe versus poly-finger touch disambiguation in the KeyboardView -->
890    <bool name="config_swipeDisambiguation">true</bool>
891
892    <!-- Specifies the amount of time to disable virtual keys after the screen is touched
893         in order to filter out accidental virtual key presses due to swiping gestures
894         or taps near the edge of the display.  May be 0 to disable the feature.
895         It is recommended that this value be no more than 250 ms.
896         This feature should be disabled for most devices. -->
897    <integer name="config_virtualKeyQuietTimeMillis">0</integer>
898
899    <!-- Component name of the default wallpaper. This will be ImageWallpaper if not
900         specified -->
901    <string name="default_wallpaper_component" translatable="false">@null</string>
902
903    <!-- Component name of the built in wallpaper used to display bitmap wallpapers. This must not be null. -->
904    <string name="image_wallpaper_component" translatable="false">com.android.systemui/com.android.systemui.ImageWallpaper</string>
905
906    <!-- True if WallpaperService is enabled -->
907    <bool name="config_enableWallpaperService">true</bool>
908
909    <!-- Whether to enable network location overlay which allows network
910         location provider to be replaced by an app at run-time. When disabled,
911         only the config_networkLocationProviderPackageName package will be
912         searched for network location provider, otherwise packages whose
913         signature matches the signatures of config_locationProviderPackageNames
914         will be searched, and the service with the highest version number will
915         be picked. Anyone who wants to disable the overlay mechanism can set it
916         to false.
917         -->
918    <bool name="config_enableNetworkLocationOverlay" translatable="false">true</bool>
919    <!-- Package name providing network location support. Used only when
920         config_enableNetworkLocationOverlay is false. -->
921    <string name="config_networkLocationProviderPackageName" translatable="false">@null</string>
922
923    <!-- Whether to enable fused location provider overlay which allows fused
924         location provider to be replaced by an app at run-time. When disabled,
925         only the config_fusedLocationProviderPackageName package will be
926         searched for fused location provider, otherwise packages whose
927         signature matches the signatures of config_locationProviderPackageNames
928         will be searched, and the service with the highest version number will
929         be picked. Anyone who wants to disable the overlay mechanism can set it
930         to false.
931         -->
932    <bool name="config_enableFusedLocationOverlay" translatable="false">true</bool>
933    <!-- Package name providing fused location support. Used only when
934         config_enableFusedLocationOverlay is false. -->
935    <string name="config_fusedLocationProviderPackageName" translatable="false">com.android.location.fused</string>
936
937    <!-- Whether to enable Hardware FLP overlay which allows Hardware FLP to be
938         replaced by an app at run-time. When disabled, only the
939         config_hardwareFlpPackageName package will be searched for Hardware Flp,
940         otherwise packages whose signature matches the signatures of
941         config_locationProviderPackageNames will be searched, and the service
942         with the highest version number will be picked. Anyone who wants to
943         disable the overlay mechanism can set it to false.
944         -->
945    <bool name="config_enableHardwareFlpOverlay" translatable="false">true</bool>
946    <!-- Package name providing Hardware Flp. Used only when
947         config_enableHardwareFlpOverlay is false. -->
948    <string name="config_hardwareFlpPackageName" translatable="false">com.android.location.fused</string>
949
950    <!-- Whether to enable geocoder overlay which allows geocoder to be replaced
951         by an app at run-time. When disabled, only the
952         config_geocoderProviderPackageName package will be searched for
953         geocoder, otherwise packages whose signature matches the signatures of
954         config_locationProviderPackageNames will be searched, and the service
955         with the highest version number will be picked. Anyone who wants to
956         disable the overlay mechanism can set it to false.
957         -->
958    <bool name="config_enableGeocoderOverlay" translatable="false">true</bool>
959    <!-- Package name providing geocoder API support. Used only when
960         config_enableGeocoderOverlay is false. -->
961    <string name="config_geocoderProviderPackageName" translatable="false">@null</string>
962
963    <!-- Whether to enable geofence overlay which allows geofence to be replaced
964         by an app at run-time. When disabled, only the
965         config_geofenceProviderPackageName package will be searched for
966         geofence implementation, otherwise packages whose signature matches the
967         signatures of config_locationProviderPackageNames will be searched, and
968         the service with the highest version number will be picked. Anyone who
969         wants to disable the overlay mechanism can set it to false.
970         -->
971    <bool name="config_enableGeofenceOverlay" translatable="false">true</bool>
972    <!-- Package name providing geofence API support. Used only when
973         config_enableGeofenceOverlay is false. -->
974    <string name="config_geofenceProviderPackageName" translatable="false">@null</string>
975
976    <!-- Whether to enable Hardware Activity-Recognition overlay which allows Hardware
977         Activity-Recognition to be replaced by an app at run-time. When disabled, only the
978         config_activityRecognitionHardwarePackageName package will be searched for
979         its implementation, otherwise packages whose signature matches the
980         signatures of config_locationProviderPackageNames will be searched, and
981         the service with the highest version number will be picked. Anyone who
982         wants to disable the overlay mechanism can set it to false.
983         -->
984    <bool name="config_enableActivityRecognitionHardwareOverlay" translatable="false">true</bool>
985    <!-- Package name providing Hardware Activity-Recognition API support. Used only when
986         config_enableActivityRecognitionHardwareOverlay is false. -->
987    <string name="config_activityRecognitionHardwarePackageName" translatable="false">@null</string>
988
989    <!-- Package name(s) containing location provider support.
990         These packages can contain services implementing location providers,
991         such as the Geocode Provider, Network Location Provider, and
992         Fused Location Provider. They will each be searched for
993         service components implementing these providers.
994         It is strongly recommended that the packages explicitly named
995         below are on the system image, so that they will not map to
996         a 3rd party application.
997         The location framework also has support for installation
998         of new location providers at run-time. The new package does not
999         have to be explicitly listed here, however it must have a signature
1000         that matches the signature of at least one package on this list.
1001         -->
1002    <string-array name="config_locationProviderPackageNames" translatable="false">
1003        <!-- The standard AOSP fused location provider -->
1004        <item>com.android.location.fused</item>
1005    </string-array>
1006
1007    <!-- This string array can be overriden to enable test location providers initially. -->
1008    <!-- Array of "[locationProviderName],[requiresNetwork],
1009         [requiresSatellite],[requiresCell],[hasMonetaryCost],
1010         [supportAltitute],[supportsSpeed],[supportsBearing],
1011         [powerRequirement],[accuracy]" -->
1012    <!-- powerRequirement is defined in android.location.Criteria
1013         0 = NO_REQUIREMENT / 1 = POWER_LOW / 2 = POWER_MEDIUM / 3 = POWER_HIGH -->
1014    <!-- accuracy is defined in anroid.location.Criteria
1015         1 = ACCURACY_FINE / 2 = ACCURACY_COARSE -->
1016    <string-array name="config_testLocationProviders" translatable="false">
1017        <!-- Example test network location provider
1018        <item>network,false,false,false,false,true,true,true,1,2</item>
1019        -->
1020    </string-array>
1021
1022    <!-- Boolean indicating if current platform supports bluetooth SCO for off call
1023    use cases -->
1024    <bool name="config_bluetooth_sco_off_call">true</bool>
1025
1026    <!-- Boolean indicating if current platform supports bluetooth wide band
1027         speech -->
1028    <bool name="config_bluetooth_wide_band_speech">true</bool>
1029
1030    <!-- Boolean indicating if current platform need do one-time bluetooth address
1031         re-validation -->
1032    <bool name="config_bluetooth_address_validation">false</bool>
1033
1034    <!-- Boolean indicating if current platform supports BLE peripheral mode -->
1035    <bool name="config_bluetooth_le_peripheral_mode_supported">false</bool>
1036
1037    <!-- Max number of scan filters supported by blutooth controller. 0 if the
1038         device does not support hardware scan filters-->
1039    <integer translatable="false" name="config_bluetooth_max_scan_filters">0</integer>
1040
1041    <!-- Max number of advertisers supported by bluetooth controller. 0 if the
1042         device does not support multiple advertisement-->
1043    <integer translatable="false" name="config_bluetooth_max_advertisers">0</integer>
1044
1045    <!-- The default data-use polling period. -->
1046    <integer name="config_datause_polling_period_sec">600</integer>
1047
1048    <!-- The default data-use threshold in bytes. 0 disables-->
1049    <integer name="config_datause_threshold_bytes">0</integer>
1050
1051    <!-- The default reduced-datarate value in kilobits per sec -->
1052    <integer name="config_datause_throttle_kbitsps">300</integer>
1053
1054    <!-- The default iface on which to monitor data use -->
1055    <string name="config_datause_iface" translatable="false">rmnet0</string>
1056
1057    <!-- The default reduced-datarate notification mask -->
1058    <!-- 2 means give warning -->
1059    <integer name="config_datause_notification_type">2</integer>
1060
1061    <!-- If Voice Radio Technology is RIL_RADIO_TECHNOLOGY_LTE:14 or
1062         RIL_RADIO_TECHNOLOGY_UNKNOWN:0 this is the value that should be used instead.
1063         A configuration value of RIL_RADIO_TECHNOLOGY_UNKNOWN:0 means
1064         there is no replacement value and that the default assumption
1065         for phone type (GSM) should be used. -->
1066    <integer name="config_volte_replacement_rat">0</integer>
1067
1068    <!-- Flag indicating whether the current device is "voice capable".
1069         If true, this means that the device supports circuit-switched
1070         (i.e. voice) phone calls over the telephony network, and is
1071         allowed to display the in-call UI while a cellular voice call is
1072         active.  This can be overridden to false for "data only" devices
1073         which can't make voice calls and don't support any in-call UI.
1074
1075         Note: this flag is subtly different from the
1076         PackageManager.FEATURE_TELEPHONY system feature, which is
1077         available on *any* device with a telephony radio, even if the
1078         device is data-only. -->
1079    <bool name="config_voice_capable">true</bool>
1080
1081    <!-- Flag indicating if the user is notified when the mobile network access is restricted -->
1082    <bool name="config_user_notification_of_restrictied_mobile_access">true</bool>
1083
1084    <!-- Flag indicating whether the current device allows sms service.
1085         If true, this means that the device supports both sending and
1086         receiving sms via the telephony network.
1087         This can be overridden to false for "data only" devices
1088         which can't send and receive sms message.
1089
1090         Note: Disable SMS also disable voicemail waiting sms,
1091               cell broadcasting sms, and MMS. -->
1092    <bool name="config_sms_capable">true</bool>
1093
1094    <!-- Default SMS Application. This will be the default SMS application when
1095         the phone first boots. The user can then change the default app to oe
1096         of their choosing.
1097         This can be overridden for devices where a different default SMS
1098         application is desired. -->
1099    <string name="default_sms_application" translatable="false">com.android.mms</string>
1100
1101    <!-- Enable/disable default bluetooth profiles:
1102        HSP_AG, ObexObjectPush, Audio, NAP -->
1103    <bool name="config_bluetooth_default_profiles">true</bool>
1104
1105    <!-- IP address of the dns server to use if nobody else suggests one -->
1106    <string name="config_default_dns_server" translatable="false">8.8.8.8</string>
1107
1108    <!-- The default mobile provisioning apn. Empty by default, maybe overridden by
1109         an mcc/mnc specific config.xml -->
1110    <string name="mobile_provisioning_apn" translatable="false"></string>
1111
1112    <!-- The default mobile provisioning url. Empty by default, maybe overridden by
1113         an mcc/mnc specific config.xml -->
1114    <string name="mobile_provisioning_url" translatable="false"></string>
1115
1116    <!-- This url is used as the default url when redirection is detected. Any
1117         should work as all url's get redirected. But maybe overridden by
1118         if needed. -->
1119    <string name="mobile_redirected_provisioning_url" translatable="false">http://google.com</string>
1120
1121    <!-- The default character set for GsmAlphabet -->
1122    <!-- Empty string means MBCS is not considered -->
1123    <string name="gsm_alphabet_default_charset" translatable="false"></string>
1124
1125    <!-- Enables SIP on WIFI only -->
1126    <bool name="config_sip_wifi_only">false</bool>
1127
1128    <!-- Enables built-in SIP phone capability -->
1129    <bool name="config_built_in_sip_phone">true</bool>
1130
1131    <!-- Boolean indicating if restoring network selection should be skipped -->
1132    <!-- The restoring is handled by modem if it is true-->
1133    <bool translatable="false" name="skip_restoring_network_selection">false</bool>
1134
1135    <!-- Maximum number of database connections opened and managed by framework layer
1136         to handle queries on each database when using Write-Ahead Logging. -->
1137    <integer name="db_connection_pool_size">4</integer>
1138
1139    <!-- The default journal mode to use use when Write-Ahead Logging is not active.
1140         Choices are: OFF, DELETE, TRUNCATE, PERSIST and MEMORY.
1141         PERSIST may improve performance by reducing how often journal blocks are
1142         reallocated (compared to truncation) resulting in better data block locality
1143         and less churn of the storage media. -->
1144    <string name="db_default_journal_mode">PERSIST</string>
1145
1146    <!-- Maximum size of the persistent journal file in bytes.
1147         If the journal file grows to be larger than this amount then SQLite will
1148         truncate it after committing the transaction. -->
1149    <integer name="db_journal_size_limit">524288</integer>
1150
1151    <!-- The database synchronization mode when using the default journal mode.
1152         FULL is safest and preserves durability at the cost of extra fsyncs.
1153         NORMAL also preserves durability in non-WAL modes and uses checksums to ensure
1154         integrity although there is a small chance that an error might go unnoticed.
1155         Choices are: FULL, NORMAL, OFF. -->
1156    <string name="db_default_sync_mode">FULL</string>
1157
1158    <!-- The database synchronization mode when using Write-Ahead Logging.
1159         FULL is safest and preserves durability at the cost of extra fsyncs.
1160         NORMAL sacrifices durability in WAL mode because syncs are only performed before
1161         and after checkpoint operations.  If checkpoints are infrequent and power loss
1162         occurs, then committed transactions could be lost and applications might break.
1163         Choices are: FULL, NORMAL, OFF. -->
1164    <string name="db_wal_sync_mode">FULL</string>
1165
1166    <!-- The Write-Ahead Log auto-checkpoint interval in database pages (typically 1 to 4KB).
1167         The log is checkpointed automatically whenever it exceeds this many pages.
1168         When a database is reopened, its journal mode is set back to the default
1169         journal mode, which may cause a checkpoint operation to occur.  Checkpoints
1170         can also happen at other times when transactions are committed.
1171         The bigger the WAL file, the longer a checkpoint operation takes, so we try
1172         to keep the WAL file relatively small to avoid long delays.
1173         The size of the WAL file is also constrained by 'db_journal_size_limit'. -->
1174    <integer name="db_wal_autocheckpoint">100</integer>
1175
1176    <!-- Max space (in MB) allocated to DownloadManager to store the downloaded
1177         files if they are to be stored in DownloadManager's data dir,
1178         which typically is /data/data/com.android.providers.downloads/files -->
1179    <integer name="config_downloadDataDirSize">200</integer>
1180
1181    <!-- Max number of downloads allowed to proceed concurrently -->
1182    <integer name="config_MaxConcurrentDownloadsAllowed">5</integer>
1183
1184    <!-- When the free space available in DownloadManager's data dir falls
1185         below the percentage value specified by this param, DownloadManager
1186         starts removing files to try to make percentage of available
1187         free space above this threshold value. -->
1188    <integer name="config_downloadDataDirLowSpaceThreshold">10</integer>
1189
1190    <!-- The URL that should be sent in an x-wap-profile header with an HTTP request,
1191         as defined in the Open Mobile Alliance User Agent Profile specification
1192         OMA-TS-UAProf-V2_0-20060206-A Section 8.1.1.1. If the URL contains a '%s'
1193         format string then that substring will be replaced with the value of
1194         Build.MODEL. The format string shall not be escaped. -->
1195    <string name="config_useragentprofile_url" translatable="false"></string>
1196
1197    <!-- When a database query is executed, the results retuned are paginated
1198         in pages of size (in KB) indicated by this value -->
1199    <integer name="config_cursorWindowSize">2048</integer>
1200
1201    <!-- Sets whether menu shortcuts should be displayed on panel menus when
1202         a keyboard is present. -->
1203    <bool name="config_showMenuShortcutsWhenKeyboardPresent">false</bool>
1204
1205    <!-- Do not translate. Defines the slots is Two Digit Number for dialing normally not USSD -->
1206    <string-array name="config_twoDigitNumberPattern" translatable="false">
1207    </string-array>
1208
1209    <!-- The VoiceMail default value is displayed to my own number if it is true -->
1210    <bool name="config_telephony_use_own_number_for_voicemail">false</bool>
1211
1212    <!-- If this value is true, Sms encoded as octet is decoded by utf8 decoder.
1213         If false, decoded by Latin decoder. -->
1214    <bool name="config_sms_utf8_support">false</bool>
1215
1216    <!-- If this value is true, The mms content-disposition field is supported correctly.
1217         If false, Content-disposition fragments are ignored -->
1218    <bool name="config_mms_content_disposition_support">true</bool>
1219
1220    <!-- MMS user agent string -->
1221    <string name="config_mms_user_agent" translatable="false"></string>
1222
1223    <!-- MMS user agent prolfile url -->
1224    <string name="config_mms_user_agent_profile_url" translatable="false"></string>
1225
1226    <!-- National Language Identifier codes for the following two config items.
1227         (from 3GPP TS 23.038 V9.1.1 Table 6.2.1.2.4.1):
1228          0  - reserved
1229          1  - Turkish
1230          2  - Spanish (single shift table only)
1231          3  - Portuguese
1232          4  - Bengali
1233          5  - Gujarati
1234          6  - Hindi
1235          7  - Kannada
1236          8  - Malayalam
1237          9  - Oriya
1238         10  - Punjabi
1239         11  - Tamil
1240         12  - Telugu
1241         13  - Urdu
1242         14+ - reserved -->
1243
1244    <!-- National language single shift tables to enable for SMS encoding.
1245         Decoding is always enabled. 3GPP TS 23.038 states that this feature
1246         should not be enabled until a formal request is issued by the relevant
1247         national regulatory body. Array elements are codes from the table above.
1248         Example 1: devices sold in Turkey must include table 1 to conform with
1249           By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
1250         Example 2: devices sold in India should include tables 4 through 13
1251           to enable use of the new Release 9 tables for Indic languages. -->
1252    <integer-array name="config_sms_enabled_single_shift_tables"></integer-array>
1253
1254    <!-- National language locking shift tables to enable for SMS encoding.
1255         Decoding is always enabled. 3GPP TS 23.038 states that this feature
1256         should not be enabled until a formal request is issued by the relevant
1257         national regulatory body. Array elements are codes from the table above.
1258         Example 1: devices sold in Turkey must include table 1 after the
1259           Turkish Telecommunication Authority requires locking shift encoding
1260           to be enabled (est. July 2012). (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
1261           See also: http://www.mobitech.com.tr/tr/ersanozturkblog_en/index.php?entry=entry090223-160014
1262         Example 2: devices sold in India should include tables 4 through 13
1263         to enable use of the new Release 9 tables for Indic languages. -->
1264    <integer-array name="config_sms_enabled_locking_shift_tables"></integer-array>
1265
1266    <!-- Set to true if the RSSI should always display CDMA signal strength even on EVDO -->
1267    <bool name="config_alwaysUseCdmaRssi">false</bool>
1268
1269
1270    <!-- If this value is true, duplicate Source/Destination port fields
1271         in WDP header of some carriers OMADM wap push are supported.
1272         ex: MSGTYPE-TotalSegments-CurrentSegment
1273             -SourcePortDestPort-SourcePortDestPort-OMADM PDU
1274         If false, not supported. -->
1275    <bool name="config_duplicate_port_omadm_wappush">false</bool>
1276
1277    <!-- Maximum numerical value that will be shown in a status bar
1278         notification icon or in the notification itself. Will be replaced
1279         with @string/status_bar_notification_info_overflow when shown in the
1280         UI. -->
1281    <integer name="status_bar_notification_info_maxnum">999</integer>
1282
1283    <!-- Path to an ISO image to be shared with via USB mass storage.
1284         This is intended to allow packaging drivers or tools for installation on a PC. -->
1285    <string translatable="false" name="config_isoImagePath"></string>
1286
1287    <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be
1288         autodetected from the Configuration. -->
1289    <bool name="config_showNavigationBar">false</bool>
1290
1291    <!-- Whether action menu items should be displayed in ALLCAPS or not.
1292         Defaults to true. If this is not appropriate for specific locales
1293         it should be disabled in that locale's resources. -->
1294    <bool name="config_actionMenuItemAllCaps">true</bool>
1295
1296    <!-- Whether action menu items should obey the "withText" showAsAction
1297         flag. This may be set to false for situations where space is
1298         extremely limited. -->
1299    <bool name="config_allowActionMenuItemTextWithIcon">false</bool>
1300
1301    <!-- Remote server that can provide NTP responses. -->
1302    <string translatable="false" name="config_ntpServer">2.android.pool.ntp.org</string>
1303    <!-- Normal polling frequency in milliseconds -->
1304    <integer name="config_ntpPollingInterval">864000000</integer>
1305    <!-- Try-again polling interval in milliseconds, in case the network request failed -->
1306    <integer name="config_ntpPollingIntervalShorter">60000</integer>
1307    <!-- Number of times to try again with the shorter interval, before backing
1308         off until the normal polling interval. A value < 0 indicates infinite. -->
1309    <integer name="config_ntpRetry">3</integer>
1310    <!-- If the time difference is greater than this threshold in milliseconds,
1311         then update the time. -->
1312    <integer name="config_ntpThreshold">5000</integer>
1313    <!-- Timeout to wait for NTP server response. -->
1314    <integer name="config_ntpTimeout">20000</integer>
1315
1316    <!-- Default network policy warning threshold, in megabytes. -->
1317    <integer name="config_networkPolicyDefaultWarning">2048</integer>
1318
1319    <!-- Set and Unsets WiMAX -->
1320    <bool name="config_wimaxEnabled">false</bool>
1321    <!-- Location of the wimax framwork jar location -->
1322    <string name="config_wimaxServiceJarLocation" translatable="false"></string>
1323    <!-- Location of the wimax native library locaiton -->
1324    <string name="config_wimaxNativeLibLocation" translatable="false"></string>
1325    <!-- Name of the wimax manager class -->
1326    <string name="config_wimaxManagerClassname" translatable="false"></string>
1327    <!-- Name of the wimax service class -->
1328    <string name="config_wimaxServiceClassname" translatable="false"></string>
1329    <!-- Name of the wimax state tracker clas -->
1330    <string name="config_wimaxStateTrackerClassname" translatable="false"></string>
1331
1332    <!-- Specifies whether the dreams feature should be supported.
1333         When true, the system will allow the user to configure dreams (screensavers)
1334         to launch when a user activity timeout occurs or the system is told to nap.
1335         When false, the dreams feature will be disabled (this does not affect dozing).
1336
1337         Consider setting this resource to false or disabling dreams by default when a
1338         doze component is specified below since dreaming will supercede dozing and
1339         will prevent the system from entering a low power state until the dream ends. -->
1340    <bool name="config_dreamsSupported">true</bool>
1341
1342    <!-- If supported, are dreams enabled? (by default) -->
1343    <bool name="config_dreamsEnabledByDefault">true</bool>
1344    <!-- If supported and enabled, are dreams activated when docked? (by default) -->
1345    <bool name="config_dreamsActivatedOnDockByDefault">true</bool>
1346    <!-- If supported and enabled, are dreams activated when asleep and charging? (by default) -->
1347    <bool name="config_dreamsActivatedOnSleepByDefault">false</bool>
1348    <!-- ComponentName of the default dream (Settings.Secure.DEFAULT_SCREENSAVER_COMPONENT) -->
1349    <string name="config_dreamsDefaultComponent">com.google.android.deskclock/com.android.deskclock.Screensaver</string>
1350
1351    <!-- Are we allowed to dream while not plugged in? -->
1352    <bool name="config_dreamsEnabledOnBattery">false</bool>
1353    <!-- Minimum battery level to allow dreaming when powered.
1354         Use -1 to disable this safety feature. -->
1355    <integer name="config_dreamsBatteryLevelMinimumWhenPowered">-1</integer>
1356    <!-- Minimum battery level to allow dreaming when not powered.
1357         Use -1 to disable this safety feature. -->
1358    <integer name="config_dreamsBatteryLevelMinimumWhenNotPowered">15</integer>
1359    <!-- If the battery level drops by this percentage and the user activity timeout
1360         has expired, then assume the device is receiving insufficient current to charge
1361         effectively and terminate the dream.  Use -1 to disable this safety feature.  -->
1362    <integer name="config_dreamsBatteryLevelDrainCutoff">5</integer>
1363
1364    <!-- ComponentName of a dream to show whenever the system would otherwise have
1365         gone to sleep.  When the PowerManager is asked to go to sleep, it will instead
1366         try to start this dream if possible.  The dream should typically call startDozing()
1367         to put the display into a low power state and allow the application processor
1368         to be suspended.  When the dream ends, the system will go to sleep as usual.
1369         Specify the component name or an empty string if none.
1370
1371         Note that doze dreams are not subject to the same start conditions as ordinary dreams.
1372         Doze dreams will run whenever the power manager is in a dozing state. -->
1373    <string name="config_dozeComponent"></string>
1374
1375    <!-- If true, the doze component is not started until after the screen has been
1376         turned off and the screen off animation has been performed. -->
1377    <bool name="config_dozeAfterScreenOff">false</bool>
1378
1379    <!-- Power Management: Specifies whether to decouple the auto-suspend state of the
1380         device from the display on/off state.
1381
1382         When false, autosuspend_disable() will be called before the display is turned on
1383         and autosuspend_enable() will be called after the display is turned off.
1384         This mode provides best compatibility for devices using legacy power management
1385         features such as early suspend / late resume.
1386
1387         When true, autosuspend_display() and autosuspend_enable() will be called
1388         independently of whether the display is being turned on or off.  This mode
1389         enables the power manager to suspend the application processor while the
1390         display is on.
1391
1392         This resource should be set to "true" when a doze component has been specified
1393         to maximize power savings but not all devices support it.
1394
1395         Refer to autosuspend.h for details.
1396    -->
1397    <bool name="config_powerDecoupleAutoSuspendModeFromDisplay">false</bool>
1398
1399    <!-- Power Management: Specifies whether to decouple the interactive state of the
1400         device from the display on/off state.
1401
1402         When false, setInteractive(..., true) will be called before the display is turned on
1403         and setInteractive(..., false) will be called after the display is turned off.
1404         This mode provides best compatibility for devices that expect the interactive
1405         state to be tied to the display state.
1406
1407         When true, setInteractive(...) will be called independently of whether the display
1408         is being turned on or off.  This mode enables the power manager to reduce
1409         clocks and disable the touch controller while the display is on.
1410
1411         This resource should be set to "true" when a doze component has been specified
1412         to maximize power savings but not all devices support it.
1413
1414         Refer to power.h for details.
1415    -->
1416    <bool name="config_powerDecoupleInteractiveModeFromDisplay">false</bool>
1417
1418    <!-- User activity timeout: Minimum screen off timeout in milliseconds.
1419
1420         Sets a lower bound for the {@link Settings.System#SCREEN_OFF_TIMEOUT} setting
1421         which determines how soon the device will go to sleep when there is no
1422         user activity.
1423
1424         This value must be greater than zero, otherwise the device will immediately
1425         fall asleep again as soon as it is awoken.
1426    -->
1427    <integer name="config_minimumScreenOffTimeout">10000</integer>
1428
1429    <!-- User activity timeout: Maximum screen dim duration in milliseconds.
1430
1431         Sets an upper bound for how long the screen will dim before the device goes
1432         to sleep when there is no user activity.  The dim duration is subtracted from
1433         the overall screen off timeout to determine the screen dim timeout.
1434         When the screen dim timeout expires, the screen will dim, shortly thereafter
1435         the device will go to sleep.
1436
1437         If the screen off timeout is very short, the dim duration may be reduced
1438         proportionally.  See config_maximumScreenDimRatio.
1439
1440         This value may be zero in which case the screen will not dim before the
1441         device goes to sleep.
1442    -->
1443    <integer name="config_maximumScreenDimDuration">7000</integer>
1444
1445    <!-- User activity timeout: Maximum screen dim duration as a percentage of screen off timeout.
1446
1447         This resource is similar to config_maximumScreenDimDuration but the maximum
1448         screen dim duration is defined as a ratio of the overall screen off timeout
1449         instead of as an absolute value in milliseconds.  This is useful for reducing
1450         the dim duration when the screen off timeout is very short.
1451
1452         When computing the screen dim duration, the power manager uses the lesser
1453         of the effective durations expressed by config_maximumScreenDimDuration and
1454         config_maximumScreenDimRatio.
1455
1456         This value must be between 0% and 100%.  If the value is zero, the screen will not
1457         dim before the device goes to sleep.
1458    -->
1459    <fraction name="config_maximumScreenDimRatio">20%</fraction>
1460
1461    <!-- Base "touch slop" value used by ViewConfiguration as a
1462         movement threshold where scrolling should begin. -->
1463    <dimen name="config_viewConfigurationTouchSlop">8dp</dimen>
1464
1465    <!-- Minimum velocity to initiate a fling, as measured in dips per second. -->
1466    <dimen name="config_viewMinFlingVelocity">50dp</dimen>
1467
1468    <!-- Maximum velocity to initiate a fling, as measured in dips per second. -->
1469    <dimen name="config_viewMaxFlingVelocity">8000dp</dimen>
1470
1471    <!-- Amount of time in ms the user needs to press the relevant key to bring up the global actions dialog -->
1472    <integer name="config_globalActionsKeyTimeout">500</integer>
1473
1474    <!-- Maximum number of grid columns permitted in the ResolverActivity
1475         used for picking activities to handle an intent. -->
1476    <integer name="config_maxResolverActivityColumns">3</integer>
1477
1478    <!-- Array of OEM specific USB mode override config.
1479         OEM can override a certain USB mode depending on ro.bootmode.
1480         Specify an array of below items to set override rule.
1481         [bootmode]:[original USB mode]:[USB mode used]-->
1482    <integer-array translatable="false" name="config_oemUsbModeOverride">
1483    </integer-array>
1484
1485    <!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. -->
1486    <bool name="config_cellBroadcastAppLinks">false</bool>
1487
1488    <!-- The default value if the SyncStorageEngine should sync automatically or not -->
1489    <bool name="config_syncstorageengine_masterSyncAutomatically">true</bool>
1490
1491    <!--  Maximum number of supported users -->
1492    <integer name="config_multiuserMaximumUsers">1</integer>
1493    <!-- Whether UI for multi user should be shown -->
1494    <bool name="config_enableMultiUserUI">false</bool>
1495
1496    <!-- If true, then we do not ask user for permission for apps to connect to USB devices.
1497         Do not set this to true for production devices. Doing so will cause you to fail CTS. -->
1498    <bool name="config_disableUsbPermissionDialogs">false</bool>
1499
1500    <!-- Minimum span needed to begin a touch scaling gesture.
1501         If the span is equal to or greater than this size, a scaling gesture
1502         will begin, where supported. (See android.view.ScaleGestureDetector)
1503
1504         This also takes into account the size of any active touch points.
1505         Devices with screens that deviate too far from their assigned density
1506         bucket should consider tuning this value in a device-specific overlay.
1507         For best results, care should be taken such that this value remains
1508         larger than the minimum reported touchMajor/touchMinor values
1509         reported by the hardware. -->
1510    <dimen name="config_minScalingSpan">27mm</dimen>
1511
1512    <!-- Minimum accepted value for touchMajor while scaling. This may be tuned
1513         per-device in overlays. -->
1514    <dimen name="config_minScalingTouchMajor">48dp</dimen>
1515
1516    <!-- Safe headphone volume index. When music stream volume is below this index
1517    the SPL on headphone output is compliant to EN 60950 requirements for portable music
1518    players. -->
1519    <integer name="config_safe_media_volume_index">10</integer>
1520
1521    <!-- Configure mobile network MTU. The standard default is set here but each carrier
1522         may have a specific value set in an overlay config.xml file. -->
1523    <integer name="config_mobile_mtu">1500</integer>
1524
1525    <!-- Configure mobile tcp buffer sizes in the form:
1526         rat-name:rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max
1527         If no value is found for the rat-name in use, the system default will be applied.
1528    -->
1529    <string-array name="config_mobile_tcp_buffers">
1530    </string-array>
1531
1532    <!-- Configure ethernet tcp buffersizes in the form:
1533         rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max -->
1534    <string name="config_ethernet_tcp_buffers" translatable="false">524288,1048576,3145728,524288,1048576,2097152</string>
1535
1536    <!-- Configure wifi tcp buffersizes in the form:
1537         rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max -->
1538    <string name="config_wifi_tcp_buffers" translatable="false">524288,1048576,2097152,262144,524288,1048576</string>
1539
1540    <!-- Whether WiFi display is supported by this device.
1541         There are many prerequisites for this feature to work correctly.
1542         Here are a few of them:
1543         * The WiFi radio must support WiFi P2P.
1544         * The WiFi radio must support concurrent connections to the WiFi display and
1545           to an access point.
1546         * The Audio Flinger audio_policy.conf file must specify a rule for the "r_submix"
1547           remote submix module.  This module is used to record and stream system
1548           audio output to the WiFi display encoder in the media server.
1549         * The remote submix module "audio.r_submix.default" must be installed on the device.
1550         * The device must be provisioned with HDCP keys (for protected content).
1551    -->
1552    <bool name="config_enableWifiDisplay">false</bool>
1553
1554    <!-- When true use the linux /dev/input/event subsystem to detect the switch changes
1555         on the headphone/microphone jack. When false use the older uevent framework. -->
1556    <bool name="config_useDevInputEventForAudioJack">false</bool>
1557
1558    <!-- Whether safe headphone volume is enabled or not (country specific). -->
1559    <bool name="config_safe_media_volume_enabled">true</bool>
1560
1561    <!-- Set to true if the wifi display supports compositing content stored
1562         in gralloc protected buffers.  For this to be true, there must exist
1563         a protected hardware path for surface flinger to composite and send
1564         protected buffers to the wifi display video encoder.
1565
1566         If this flag is false, we advise applications not to use protected
1567         buffers (if possible) when presenting content to a wifi display because
1568         the content may be blanked.
1569
1570         This flag controls whether the {@link Display#FLAG_SUPPORTS_PROTECTED_BUFFERS}
1571         flag is set for wifi displays.
1572    -->
1573    <bool name="config_wifiDisplaySupportsProtectedBuffers">false</bool>
1574
1575    <!-- Whether camera shutter sound is forced or not  (country specific). -->
1576    <bool name="config_camera_sound_forced">false</bool>
1577
1578    <!-- Set to true if we need to not prefer an APN.
1579         This is being added to enable a simple scenario of pre-paid
1580         provisioning on some carriers, working around a bug (7305641)
1581         where if the preferred is used we don't try the others. -->
1582    <bool name="config_dontPreferApn">false</bool>
1583
1584    <!-- The list of ril radio technologies (see ServiceState.java) which only support
1585         a single data connection at one time.  This may change by carrier via
1586         overlays (some don't support multiple pdp on UMTS).  All unlisted radio
1587         tech types support unlimited types (practically only 2-4 used). -->
1588    <integer-array name="config_onlySingleDcAllowed">
1589        <item>4</item>  <!-- IS95A -->
1590        <item>5</item>  <!-- IS95B -->
1591        <item>6</item>  <!-- 1xRTT -->
1592        <item>7</item>  <!-- EVDO_0 -->
1593        <item>8</item>  <!-- EVDO_A -->
1594        <item>12</item> <!-- EVDO_B -->
1595    </integer-array>
1596
1597    <!-- Set to true if after a provisioning apn the radio should be restarted -->
1598    <bool name="config_restartRadioAfterProvisioning">false</bool>
1599
1600    <!-- Boolean indicating if RADIO POWER OFF is required on receiving SIM REFRESH with RESET.
1601         This will be handled by modem if it is false. -->
1602    <bool name="config_requireRadioPowerOffOnSimRefreshReset">false</bool>
1603
1604    <!-- Vibrator pattern to be used as the default for notifications
1605         that specify DEFAULT_VIBRATE.
1606     -->
1607    <integer-array name="config_defaultNotificationVibePattern">
1608        <item>0</item>
1609        <item>350</item>
1610        <item>250</item>
1611        <item>350</item>
1612    </integer-array>
1613
1614    <!-- Vibrator pattern to be used as the default for notifications
1615         that do not specify vibration but vibrate anyway because the device
1616         is in vibrate mode.
1617     -->
1618    <integer-array name="config_notificationFallbackVibePattern">
1619        <item>0</item>
1620        <item>100</item>
1621        <item>150</item>
1622        <item>100</item>
1623    </integer-array>
1624
1625    <!-- Flag indicating if the speed up audio on mt call code should be executed -->
1626    <bool name="config_speed_up_audio_on_mt_calls">false</bool>
1627
1628    <!-- Class name of the framework account picker activity.
1629         Can be customized for other product types -->
1630    <string name="config_chooseAccountActivity"
1631            >android/android.accounts.ChooseAccountActivity</string>
1632    <!-- Class name of the account type and account picker activity.
1633         Can be customized for other product types -->
1634    <string name="config_chooseTypeAndAccountActivity"
1635            >android/android.accounts.ChooseTypeAndAccountActivity</string>
1636
1637    <!-- Component name of a custom ResolverActivity (Intent resolver) to be used instead of
1638         the default framework version. If left empty, then the framework version will be used.
1639         Example: com.google.android.myapp/.resolver.MyResolverActivity  -->
1640    <string name="config_customResolverActivity"></string>
1641
1642    <!-- Name of the activity or service that prompts the user to reject, accept, or whitelist
1643         an adb host's public key, when an unwhitelisted host connects to the local adbd.
1644         Can be customized for other product types -->
1645    <string name="config_customAdbPublicKeyConfirmationComponent"
1646            >com.android.systemui/com.android.systemui.usb.UsbDebuggingActivity</string>
1647
1648    <!-- Name of the CustomDialog that is used for VPN -->
1649    <string name="config_customVpnConfirmDialogComponent"
1650            >com.android.vpndialogs/com.android.vpndialogs.ConfirmDialog</string>
1651
1652    <!-- Apps that are authorized to access shared accounts, overridden by product overlays -->
1653    <string name="config_appsAuthorizedForSharedAccounts">;com.android.settings;</string>
1654
1655    <!-- Flag indicating that the media framework should not allow changes or mute on any
1656         stream or master volumes. -->
1657    <bool name="config_useFixedVolume">false</bool>
1658
1659    <!-- The list of IMEs which should be disabled until used.
1660         This function suppresses update notifications for these pre-installed apps.
1661         We need to set this configuration carefully that they should not have functionarities
1662         other than "IME" or "Spell Checker". In InputMethodManagerService,
1663         the listed IMEs are disabled until used when all of the following conditions are met.
1664         1. Not selected as an enabled IME in the Settings
1665         2. Not selected as a spell checker in the Settings
1666         3. Installed
1667         4. A pre-installed IME
1668         5. Not enabled
1669         And the disabled_until_used state for an IME is released by InputMethodManagerService
1670         when the IME is selected as an enabled IME. -->
1671    <string-array name="config_disabledUntilUsedPreinstalledImes" translatable="false">
1672        <item>com.android.inputmethod.latin</item>
1673    </string-array>
1674
1675    <!-- The list of classes that should be added to the notification ranking pipline.
1676     See {@link com.android.server.notification.NotificationSignalExtractor} -->
1677    <string-array name="config_notificationSignalExtractors">
1678        <item>com.android.server.notification.ValidateNotificationPeople</item>
1679        <item>com.android.server.notification.PackagePriorityExtractor</item>
1680        <item>com.android.server.notification.NotificationIntrusivenessExtractor</item>
1681        <item>com.android.server.notification.PackageVisibilityExtractor</item>
1682    </string-array>
1683
1684    <!-- Flag indicating that this device does not rotate and will always remain in its default
1685         orientation. Activities that desire to run in a non-compatible orientation will be run
1686         from an emulated display within the physical display. -->
1687    <bool name="config_forceDefaultOrientation">false</bool>
1688
1689    <!-- Default Gravity setting for the system Toast view. Equivalent to: Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM -->
1690    <integer name="config_toastDefaultGravity">0x00000051</integer>
1691
1692    <!-- set to false if we need to show user confirmation
1693         when alpha identifier is not provided by the UICC -->
1694    <bool name="config_stkNoAlphaUsrCnf">true</bool>
1695
1696    <!-- Don't use roaming icon for considered operators.
1697         A match on config_sameNamedOperatorConsideredRoaming supersedes a match on this.
1698         Can use mcc or mcc+mnc as item. For example, 302 or 21407.
1699         If operators, 21404 and 21407, make roaming agreements, user of 21404 should not see
1700         the roaming icon as using 21407 network.
1701         To do this, add 21407 item to values-mcc214-mnc04/config.xml -->
1702    <string-array translatable="false" name="config_operatorConsideredNonRoaming">
1703    </string-array>
1704
1705    <!-- Threshold (in ms) under which a screen off / screen on will be considered a reset of the
1706         immersive mode confirmation prompt.-->
1707    <integer name="config_immersive_mode_confirmation_panic">5000</integer>
1708
1709    <!-- For some operators, PDU has garbages. To fix it, need to use valid index -->
1710    <integer name="config_valid_wappush_index">-1</integer>
1711
1712    <!-- This is NOT just for same named operators unlike the name suggests (will blacklist regardless of name).
1713         A match on this supersedes a match on config_operatorConsideredNonRoaming.
1714         Uses "startsWith" so you can use a leading substring like the mcc or
1715         use the complete mcc+mnc string.
1716         For a given mcc/mcc-mnc, some operators may want to roam (even if
1717         config_operatorConsideredNonRoaming has the mcc/mcc-mnc).
1718         user of 40485 should see the roaming icon as using 40483 network
1719         though same Reliance network.
1720         To do this, add 40483 item to values-mcc404-mnc85/config.xml -->
1721    <string-array translatable="false" name="config_sameNamedOperatorConsideredRoaming">
1722    </string-array>
1723    <!-- call barring MMI code from TS 22.030 Annex B -->
1724    <string-array translatable="false" name="config_callBarringMMI">
1725        <item>33</item>
1726        <item>331</item>
1727        <item>332</item>
1728        <item>35</item>
1729        <item>351</item>
1730        <item>330</item>
1731        <item>333</item>
1732        <item>353</item>
1733    </string-array>
1734
1735    <!-- Override the default detection behavior for the framework method
1736         android.view.ViewConfiguration#hasPermanentMenuKey().
1737         Valid settings are:
1738         0 - No change. Use the default autodetection behavior.
1739         1 - The device DOES have a permanent menu key; ignore autodetection.
1740         2 - The device DOES NOT have a permanent menu key; ignore autodetection. -->
1741    <integer name="config_overrideHasPermanentMenuKey">0</integer>
1742
1743    <!-- Override the DPad detection behavior for configuration purposes -->
1744    <bool name="config_hasPermanentDpad">false</bool>
1745
1746    <!-- default window inset isRound property -->
1747    <bool name="config_windowIsRound">false</bool>
1748
1749    <!-- Package name for default network scorer app; overridden by product overlays. -->
1750    <string name="config_defaultNetworkScorerPackageName"></string>
1751
1752    <!-- default device has recents property -->
1753    <bool name="config_hasRecents">true</bool>
1754
1755    <!-- default window ShowCircularMask property -->
1756    <bool name="config_windowShowCircularMask">false</bool>
1757
1758    <!-- default value for whether circular emulators (ro.emulator.circular)
1759         should show a display overlay on the screen -->
1760    <bool name="config_windowEnableCircularEmulatorDisplayOverlay">false</bool>
1761
1762    <!-- Defines the default set of global actions. Actions may still be disabled or hidden based
1763         on the current state of the device.
1764         Each item must be one of the following strings:
1765         "power" = Power off
1766         "settings" = An action to launch settings
1767         "airplane" = Airplane mode toggle
1768         "bugreport" = Take bug report, if available
1769         "silent" = silent mode
1770         "users" = list of users
1771         -->
1772    <string-array translatable="false" name="config_globalActionsList">
1773        <item>power</item>
1774        <item>bugreport</item>
1775        <item>users</item>
1776    </string-array>
1777
1778    <!-- default telephony hardware configuration for this platform.
1779    -->
1780    <!-- this string array should be overridden by the device to present a list
1781         telephony hardware resource.  this is used by the telephony device controller
1782         (TDC) to offer the basic capabilities of the hardware to the telephony
1783         framework
1784    -->
1785    <!-- an array of "[hardware type],[hardware-uuid],[state],[[hardware-type specific]]"
1786         with, [[hardware-type specific]] in:
1787            - "[[ril-model],[rat],[max-active-voice],[max-active-data],[max-active-standby]]"
1788              for 'modem' hardware
1789            - "[[associated-modem-uuid]]"
1790              for 'sim' hardware.
1791         refer to HardwareConfig in com.android.internal.telephony for specific details/values
1792         those elements can carry.
1793    -->
1794    <string-array translatable="false" name="config_telephonyHardware">
1795        <!-- modem -->
1796        <item>"0,modem,0,0,0,1,1,1"</item>
1797        <!-- sim -->
1798        <item>"1,sim,0,modem"</item>
1799    </string-array>
1800
1801    <!-- This string array can be overriden to add an additional DRM support for WebView EME. -->
1802    <!-- Array of "[keySystemName],[UuidOfMediaDrm]" @hide @SystemApi -->
1803    <string-array name="config_keySystemUuidMapping" translatable="false">
1804        <!-- Example:
1805        <item>"x-com.microsoft.playready,9A04F079-9840-4286-AB92-E65BE0885F95"</item>
1806        -->
1807    </string-array>
1808
1809    <!-- Flag indicating which package name can access the persistent data partition -->
1810    <string name="config_persistentDataPackageName" translatable="false"></string>
1811
1812    <!-- Flag indicating apps will skip sending hold request before merge. In this case
1813        IMS service implementation will do both.i.e.hold followed by merge. -->
1814    <bool name="skipHoldBeforeMerge">true</bool>
1815
1816    <!-- Flag indicating emergency calls will always use IMS irrespective of the state of
1817    the IMS connection -->
1818    <bool name="useImsAlwaysForEmergencyCall">true</bool>
1819
1820    <!-- Flag indicating whether the IMS service can be turned off. If false then
1821        the service will not be turned-off completely (the ImsManager.turnOffIms() will
1822        be disabled) but individual Features can be disabled using ImsConfig.setFeatureValue() -->
1823    <bool name="imsServiceAllowTurnOff">true</bool>
1824
1825    <!-- Flag specifying whether VoLTE is available on device -->
1826    <bool name="config_device_volte_available">false</bool>
1827
1828    <!-- Flag specifying whether VoLTE should be available for carrier: independent of
1829         carrier provisioning. If false: hard disabled. If true: then depends on carrier
1830         provisioning, availability etc -->
1831    <bool name="config_carrier_volte_available">false</bool>
1832
1833    <!-- Flag specifying whether VT is available on device -->
1834    <bool name="config_device_vt_available">false</bool>
1835
1836    <!-- Flag specifying whether VT should be available for carrier: independent of
1837         carrier provisioning. If false: hard disabled. If true: then depends on carrier
1838         provisioning, availability etc -->
1839    <bool name="config_carrier_vt_available">false</bool>
1840
1841    <bool name="config_networkSamplingWakesDevice">true</bool>
1842
1843    <string-array translatable="false" name="config_cdma_home_system" />
1844
1845    <!--From SmsMessage-->
1846    <!--Support decoding the user data payload as pack GSM 8-bit (a GSM alphabet
1847        string that's stored in 8-bit unpacked format) characters.-->
1848    <bool translatable="false" name="config_sms_decode_gsm_8bit_data">false</bool>
1849
1850    <!-- Package name providing WebView implementation. -->
1851    <string name="config_webViewPackageName" translatable="false">com.android.webview</string>
1852
1853    <!-- If EMS is not supported, framework breaks down EMS into single segment SMS
1854         and adds page info " x/y". This config is used to set which carrier doesn't
1855         support EMS and whether page info should be added at the beginning or the end.
1856         We use tag 'prefix' for position beginning and 'suffix' for position end.
1857         And use gid to distinguish different carriers which using same mcc and mnc.
1858         Examples: <item>simOperatorNumber;position;gid(optional)</item>>
1859    -->
1860    <string-array translatable="false" name="no_ems_support_sim_operators">
1861        <!-- VZW -->
1862        <item>20404;suffix;BAE0000000000000</item>
1863    </string-array>
1864
1865    <bool name="config_auto_attach_data_on_creation">true</bool>
1866
1867    <!-- Values for GPS configuration -->
1868    <string-array translatable="false" name="config_gpsParameters">
1869        <item>SUPL_HOST=supl.google.com</item>
1870        <item>SUPL_PORT=7275</item>
1871        <item>NTP_SERVER=north-america.pool.ntp.org</item>
1872        <item>SUPL_VER=0x20000</item>
1873        <item>SUPL_MODE=1</item>
1874    </string-array>
1875
1876    <!-- If there is no preload VM number in the sim card, carriers such as
1877         Verizon require to load a default vm number from the configurantion.
1878         Define config_default_vm_number for this purpose. And there are two
1879         optional formats for this configuration as below:
1880         (1)<item>voicemail number</item>
1881         (2)<item>voicemail number;gid</item>
1882         The logic to pick up the correct voicemail number:
1883         (1) If the config_default_vm_number array has no gid special item, the last one will be
1884         picked
1885         (2) If the config_default_vm_number array has gid special item and  it matches the current
1886         sim's gid, it will be picked.
1887         (3) If the config_default_vm_number array has gid special item but it doesn't match the
1888         current sim's gid, the last one without gid will be picked -->
1889    <string-array translatable="false" name="config_default_vm_number" />
1890
1891    <!-- Sprint need a 70 ms delay for 3way call -->
1892    <integer name="config_cdma_3waycall_flash_delay">0</integer>
1893
1894    <!--SIM does not save, but the voice mail number to be changed. -->
1895    <bool name="editable_voicemailnumber">false</bool>
1896
1897    <!-- service number convert map in roaming network. -->
1898    <!-- [dialstring],[replacement][,optional gid] -->
1899    <string-array translatable="false" name="dial_string_replace">
1900    </string-array>
1901
1902    <!-- Flag indicating whether radio is to be restarted on the error of
1903         PDP_FAIL_REGULAR_DEACTIVATION/0x24 -->
1904    <bool name="config_restart_radio_on_pdp_fail_regular_deactivation">false</bool>
1905
1906    <!-- networks that don't want data deactivate when shutdown the phone
1907         note this is dependent on the operator of the network we're on,
1908         not operator on the SIM -->
1909    <string-array translatable="false" name="networks_not_clear_data">
1910        <item>71203</item>
1911        <item>71606</item>
1912        <item>71610</item>
1913        <item>732101</item>
1914    </string-array>
1915
1916    <!-- Config determines whether to update phone object when voice registration
1917         state changes. Voice radio tech change will always trigger an update of
1918         phone object irrespective of this config -->
1919    <bool name="config_switch_phone_on_voice_reg_state_change">true</bool>
1920
1921    <bool name="config_sms_force_7bit_encoding">false</bool>
1922
1923    <!-- Flag indicating whether strict threshold is used, or lenient threshold is used,
1924          when evaluating RSRP for LTE antenna bar display
1925           0. Strict threshold
1926           1. Lenient threshold
1927    -->
1928    <integer name="config_LTE_RSRP_threshold_type">1</integer>
1929
1930    <!-- Show the next-alarm as a zen exit condition if it occurs in the next n hours. -->
1931    <integer name="config_next_alarm_condition_lookahead_threshold_hrs">12</integer>
1932
1933    <!-- Flags enabling default window features. See Window.java -->
1934    <bool name="config_defaultWindowFeatureOptionsPanel">true</bool>
1935    <bool name="config_defaultWindowFeatureContextMenu">true</bool>
1936
1937    <!-- This config is used to check if the carrier requires converting destination
1938         number before sending out a SMS.
1939         Formats for this configuration as below:
1940         [true or false][;optional gid]
1941         The logic to pick up the configuration:
1942         (1) If the "config_sms_convert_destination_number_support" array has no gid
1943             special item, the last one will be picked
1944         (2) If the "config_sms_convert_destination_number_support" array has gid special
1945             item and it matches the current sim's gid, it will be picked.
1946         (3) If the "config_sms_convert_destination_number_support" array has gid special
1947             item but it doesn't match the current sim's gid, the last one without gid
1948             will be picked -->
1949    <string-array translatable="false" name="config_sms_convert_destination_number_support">
1950        <item>false</item>
1951    </string-array>
1952
1953    <!-- The maximum bitmap size that can be written to a MediaMetadata object. This value
1954         is the max width/height allowed in dips.-->
1955    <dimen name="config_mediaMetadataBitmapMaxSize">320dp</dimen>
1956
1957    <string translatable="false" name="prohibit_manual_network_selection_in_gobal_mode">false</string>
1958</resources>
1959