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