config.xml revision 5d27b7a29bf350320a27362164da2d1f2d1ff199
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. -->
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">gps</xliff:g></item>
30       <item><xliff:g id="id">bluetooth</xliff:g></item>
31       <item><xliff:g id="id">nfc</xliff:g></item>
32       <item><xliff:g id="id">tty</xliff:g></item>
33       <item><xliff:g id="id">speakerphone</xliff:g></item>
34       <item><xliff:g id="id">mute</xliff:g></item>
35       <item><xliff:g id="id">volume</xliff:g></item>
36       <item><xliff:g id="id">wifi</xliff:g></item>
37       <item><xliff:g id="id">cdma_eri</xliff:g></item>
38       <item><xliff:g id="id">data_connection</xliff:g></item>
39       <item><xliff:g id="id">phone_evdo_signal</xliff:g></item>
40       <item><xliff:g id="id">phone_signal</xliff:g></item>
41       <item><xliff:g id="id">battery</xliff:g></item>
42       <item><xliff:g id="id">alarm_clock</xliff:g></item>
43       <item><xliff:g id="id">secure</xliff:g></item>
44       <item><xliff:g id="id">clock</xliff:g></item>
45    </string-array>
46
47    <!-- Flag indicating whether the surface flinger has limited
48         alpha compositing functionality in hardware.  If set, the window
49         manager will disable alpha trasformation in animations where not
50         strictly needed. -->
51    <bool name="config_sf_limitedAlpha">false</bool>
52
53    <!-- Default value used to block data calls if ims is not
54         connected.  If you use the ims apn DCT will block
55         any other apn from connecting until ims apn is connected-->
56    <bool name="ImsConnectedDefaultValue">false</bool>
57    
58    <!-- Flag indicating whether the surface flinger is inefficient
59         at performing a blur.  Used by parts of the UI to turn off
60         the blur effect where it isn't worth the performance hit. -->
61    <bool name="config_sf_slowBlur">false</bool>
62    
63    <!-- The duration (in milliseconds) of a short animation. -->
64    <integer name="config_shortAnimTime">200</integer>
65    
66    <!-- The duration (in milliseconds) of a medium-length animation. -->
67    <integer name="config_mediumAnimTime">400</integer>
68    
69    <!-- The duration (in milliseconds) of a long animation. -->
70    <integer name="config_longAnimTime">500</integer>
71
72    <!-- The duration (in milliseconds) of the activity open/close and fragment open/close animations. -->
73    <integer name="config_activityShortDur">150</integer>
74    <integer name="config_activityDefaultDur">220</integer>
75    
76    <!-- Duration for the dim animation behind a dialog.  This may be either
77         a percentage, which is relative to the duration of the enter/open
78         animation of the window being shown that is dimming behind, or it may
79         be an integer for a constant duration. -->
80    <fraction name="config_dimBehindFadeDuration">100%</fraction>
81
82    <!-- The maximum width we would prefer dialogs to be.  0 if there is no
83         maximum (let them grow as large as the screen).  Actual values are
84         specified for -large and -xlarge configurations. -->
85    <dimen name="config_prefDialogWidth">320dp</dimen>
86    
87    <!-- Whether dialogs should close automatically when the user touches outside
88         of them.  This should not normally be modified. -->
89    <bool name="config_closeDialogWhenTouchOutside">false</bool>
90    
91    <!-- The duration (in milliseconds) that the radio will scan for a signal
92         when there's no network connection. If the scan doesn't timeout, use zero -->
93    <integer name="config_radioScanningTimeout">0</integer>
94
95    <!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
96         Please don't copy them, copy anything else. -->
97
98    <!-- This string array should be overridden by the device to present a list of network
99         attributes.  This is used by the connectivity manager to decide which networks can coexist
100         based on the hardware -->
101    <!-- An Array of "[Connection name],[ConnectivityManager connection type],
102         [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet]  -->
103    <!-- the 5th element "resore-time" indicates the number of milliseconds to delay
104         before automatically restore the default connection.  Set -1 if the connection
105         does not require auto-restore. -->
106    <!-- the 6th element indicates boot-time dependency-met value. -->
107    <string-array translatable="false" name="networkAttributes">
108        <item>"wifi,1,1,1,-1,true"</item>
109        <item>"mobile,0,0,0,-1,true"</item>
110        <item>"mobile_mms,2,0,2,60000,true"</item>
111        <item>"mobile_supl,3,0,2,60000,true"</item>
112        <item>"mobile_hipri,5,0,3,60000,true"</item>
113        <item>"mobile_fota,10,0,2,60000,true"</item>
114        <item>"mobile_ims,11,0,2,60000,true"</item>
115        <item>"mobile_cbs,12,0,2,60000,true"</item>
116    </string-array>
117
118    <!-- This string array should be overridden by the device to present a list of radio
119         attributes.  This is used by the connectivity manager to decide which networks can coexist
120         based on the hardware -->
121    <!-- An Array of "[ConnectivityManager connectionType],
122                      [# simultaneous connection types]"  -->
123    <string-array translatable="false" name="radioAttributes">
124        <item>"1,1"</item>
125        <item>"0,1"</item>
126    </string-array>
127
128    <!-- The maximum duration (in milliseconds) we expect a network transition to take -->
129    <integer name="config_networkTransitionTimeout">60000</integer>
130
131    <!-- List of regexpressions describing the interface (if any) that represent tetherable
132         USB interfaces.  If the device doesn't want to support tething over USB this should
133         be empty.  An example would be "usb.*" -->
134    <string-array translatable="false" name="config_tether_usb_regexs">
135    </string-array>
136
137    <!-- List of regexpressions describing the interface (if any) that represent tetherable
138         Wifi interfaces.  If the device doesn't want to support tethering over Wifi this
139         should be empty.  An example would be "softap.*" -->
140    <string-array translatable="false" name="config_tether_wifi_regexs">
141    </string-array>
142
143    <!-- List of regexpressions describing the interface (if any) that represent tetherable
144         bluetooth interfaces.  If the device doesn't want to support tethering over bluetooth this
145         should be empty. -->
146    <string-array translatable="false" name="config_tether_bluetooth_regexs">
147    </string-array>
148
149    <!-- Max number of Bluetooth tethering connections allowed. If this is
150         updated config_tether_dhcp_range has to be updated appropriately. -->
151    <integer translateable="false" name="config_max_pan_devices">5</integer>
152
153    <!-- Dhcp range (min, max) to use for tethering purposes -->
154    <string-array translatable="false" name="config_tether_dhcp_range">
155    </string-array>
156
157    <!-- Regex array of allowable upstream ifaces for tethering - for example if you want
158         tethering on a new interface called "foo2" add <item>"foo\\d"</item> to the array -->
159    <!-- Interfaces will be prioritized according to the order listed -->
160    <string-array translatable="false" name="config_tether_upstream_regexs">
161    </string-array>
162
163    <!-- Regex of wired ethernet ifaces -->
164    <string translatable="false" name="config_ethernet_iface_regex">eth\\d</string>
165
166    <!-- Boolean indicating if we require the use of DUN on mobile for tethering.
167         Note that this defaults to false so that if you move to a carrier that
168         hasn't configured anything tethering will still work.  If you'd rather
169         make the device untetherable on unconfigured devices, set to true -->
170    <bool translatable="false" name="config_tether_dun_required">false</bool>
171
172    <!-- String containing the apn value for tethering.  May be overriden by secure settings
173         TETHER_DUN_APN.  Value is a comma separated series of strings:
174         "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type"
175         note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" -->
176    <string translatable="false" name="config_tether_apndata"></string>
177
178    <!-- Boolean indicating whether the wifi chipset has dual frequency band support -->
179    <bool translatable="false" name="config_wifi_dual_band_support">false</bool>
180
181    <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism.
182         This mechanism allows the host to remain in suspend state and the dongle to actively
183         scan and wake the host when a configured SSID is detected by the dongle. This chipset
184         capability can provide power savings when wifi needs to be always kept on.
185         The driver commands needed to support the feature are BGSCAN-START and BGSCAN-STOP -->
186    <bool translatable="false" name="config_wifi_background_scan_support">false</bool>
187
188    <!-- Integer indicating wpa_supplicant scan interval in milliseconds -->
189    <integer translatable="false" name="config_wifi_supplicant_scan_interval">15000</integer>
190
191    <!-- Integer indicating the framework scan interval in milliseconds. This is used in the scenario
192         where the chipset does not support background scanning (config_wifi_background_scan_suport
193         is false) to set up a periodic wake up scan so that the device can connect to a new access
194         point on the move. A value of 0 means no periodic scans will be used in the framework. -->
195    <integer translatable="false" name="config_wifi_framework_scan_interval">300000</integer>
196
197    <!-- Flag indicating whether the keyguard should be bypassed when
198         the slider is open.  This can be set or unset depending how easily
199         the slider can be opened (for example, in a pocket or purse). -->
200    <bool name="config_bypass_keyguard_if_slider_open">true</bool>
201    
202    <!-- Flag indicating whether the we should enable the automatic brightness in Settings.
203         Software implementation will be used if config_hardware_auto_brightness_available is not set -->
204    <bool name="config_automatic_brightness_available">false</bool>
205
206    <!-- Don't name config resources like this.  It should look like config_annoyDianne -->
207    <bool name="config_annoy_dianne">true</bool>
208
209    <!-- If this is true, the screen will come on when you unplug usb/power/whatever. -->
210    <bool name="config_unplugTurnsOnScreen">false</bool>
211    
212    <!-- If this is true, the screen will fade off. -->
213    <bool name="config_animateScreenLights">true</bool>
214    
215    <!-- XXXXXX END OF RESOURCES USING WRONG NAMING CONVENTION -->
216
217    <!-- If true, the screen can be rotated via the accelerometer in all 4
218         rotations as the default behavior. -->
219    <bool name="config_allowAllRotations">true</bool>
220
221    <!-- If true, the direction rotation is applied to get to an application's requested
222         orientation is reversed.  Normally, the model is that landscape is
223         clockwise from portrait; thus on a portrait device an app requesting
224         landscape will cause a clockwise rotation, and on a landscape device an
225         app requesting portrait will cause a counter-clockwise rotation.  Setting
226         true here reverses that logic. -->
227    <bool name="config_reverseDefaultRotation">false</bool>
228
229    <!-- The number of degrees to rotate the display when the keyboard is open. -->
230    <integer name="config_lidOpenRotation">90</integer>
231
232    <!-- The number of degrees to rotate the display when the device is in a desk dock.
233         A value of -1 means no change in orientation by default. -->
234    <integer name="config_deskDockRotation">-1</integer>
235
236    <!-- The number of degrees to rotate the display when the device is in a car dock.
237         A value of -1 means no change in orientation by default. -->
238    <integer name="config_carDockRotation">-1</integer>
239
240    <!-- Control whether being in the desk dock (and powered) always
241         keeps the screen on.  By default it stays on when plugged in to
242         AC.  0 will not keep it on; or together 1 to stay on when plugged
243         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
244    <integer name="config_deskDockKeepsScreenOn">1</integer>
245
246    <!-- Control whether being in the car dock (and powered) always
247         keeps the screen on.  By default it stays on when plugged in to
248         AC.  0 will not keep it on; or together 1 to stay on when plugged
249         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
250    <integer name="config_carDockKeepsScreenOn">1</integer>
251
252    <!-- Control whether being in the desk dock should enable accelerometer
253         based screen orientation.  Note this should probably default to true
254         like car dock, but we haven't had a chance to test it. -->
255    <bool name="config_deskDockEnablesAccelerometer">false</bool>
256
257    <!-- Control whether being in the car dock should enable accelerometer based
258         screen orientation.  This defaults to true because putting a device in
259         a car dock make the accelerometer more a physical input (like a lid). -->
260    <bool name="config_carDockEnablesAccelerometer">true</bool>
261
262    <!-- Indicate whether the lid state impacts the accessibility of
263         the physical keyboard.  0 means it doesn't, 1 means it is accessible
264         when the lid is open, 2 means it is accessible when the lid is
265         closed.  The default is 1. -->
266    <integer name="config_lidKeyboardAccessibility">1</integer>
267
268    <!-- Indicate whether the lid state impacts the accessibility of
269         the physical keyboard.  0 means it doesn't, 1 means it is accessible
270         when the lid is open, 2 means it is accessible when the lid is
271         closed.  The default is 0. -->
272    <integer name="config_lidNavigationAccessibility">0</integer>
273
274    <!-- Control the behavior when the user long presses the power button.
275            0 - Nothing
276            1 - Global actions menu
277            2 - Power off (with confirmation)
278    -->
279    <integer name="config_longPressOnPowerBehavior">1</integer>
280
281    <!-- Indicate whether the SD card is accessible without removing the battery. -->
282    <bool name="config_batterySdCardAccessibility">false</bool>
283
284    <!-- List of file paths for USB host busses to exclude from USB host support.
285         For example, if the first USB bus on the device is used to communicate
286         with the modem or some other restricted hardware, add "/dev/bus/usb/001/"
287         to this list.  If this is empty, no parts of the host USB bus will be excluded.
288    -->
289    <string-array name="config_usbHostBlacklist">
290    </string-array>
291
292    <!-- Vibrator pattern for feedback about a long screen/key press -->
293    <integer-array name="config_longPressVibePattern">
294        <item>0</item>
295        <item>1</item>
296        <item>20</item>
297        <item>21</item>
298    </integer-array>
299    
300    <!-- Vibrator pattern for feedback about touching a virtual key -->
301    <integer-array name="config_virtualKeyVibePattern">
302        <item>0</item>
303        <item>10</item>
304        <item>20</item>
305        <item>30</item>
306    </integer-array>
307
308    <!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
309    <integer-array name="config_keyboardTapVibePattern">
310        <item>40</item>
311    </integer-array>
312
313    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
314    <integer-array name="config_safeModeDisabledVibePattern">
315        <item>0</item>
316        <item>1</item>
317        <item>20</item>
318        <item>21</item>
319    </integer-array>
320
321    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
322    <integer-array name="config_safeModeEnabledVibePattern">
323        <item>0</item>
324        <item>1</item>
325        <item>20</item>
326        <item>21</item>
327        <item>500</item>
328        <item>600</item>
329    </integer-array>
330
331    <!-- Vibrator pattern for feedback about hitting a scroll barrier -->
332    <integer-array name="config_scrollBarrierVibePattern">
333        <item>0</item>
334        <item>15</item>
335        <item>10</item>
336        <item>10</item>
337    </integer-array>
338
339    <bool name="config_use_strict_phone_number_comparation">false</bool>
340
341    <!-- Display low battery warning when battery level dips to this value.
342         Also, the battery stats are flushed to disk when we hit this level.  -->
343    <integer name="config_criticalBatteryWarningLevel">4</integer>
344
345    <!-- Display low battery warning when battery level dips to this value -->
346    <!-- Display low battery warning when battery level dips to this value -->
347    <integer name="config_lowBatteryWarningLevel">15</integer>
348
349    <!-- Close low battery warning when battery level reaches this value -->
350    <integer name="config_lowBatteryCloseWarningLevel">20</integer>
351
352    <!-- Default color for notification LED. -->
353    <color name="config_defaultNotificationColor">#ff00ff00</color>
354
355    <!-- Default LED on time for notification LED in milliseconds. -->
356    <integer name="config_defaultNotificationLedOn">500</integer>
357
358    <!-- Default LED off time for notification LED in milliseconds. -->
359    <integer name="config_defaultNotificationLedOff">2000</integer>
360
361    <!-- Default value for led color when battery is low on charge -->
362    <integer name="config_notificationsBatteryLowARGB">0xFFFF0000</integer>
363
364    <!-- Default value for led color when battery is medium charged -->
365    <integer name="config_notificationsBatteryMediumARGB">0xFFFFFF00</integer>
366
367    <!-- Default value for led color when battery is fully charged -->
368    <integer name="config_notificationsBatteryFullARGB">0xFF00FF00</integer>
369
370    <!-- Default value for LED on time when the battery is low on charge in miliseconds -->
371    <integer name="config_notificationsBatteryLedOn">125</integer>
372
373    <!-- Default value for LED off time when the battery is low on charge in miliseconds -->
374    <integer name="config_notificationsBatteryLedOff">2875</integer>
375
376    <!-- Allow the menu hard key to be disabled in LockScreen on some devices -->
377    <bool name="config_disableMenuKeyInLockScreen">false</bool>
378
379    <!-- Show sliding tab before lockscreen -->
380    <bool name="config_enableSlidingTabFirst">true</bool>
381
382    <!-- Diable lockscreen rotation by default -->
383    <bool name="config_enableLockScreenRotation">false</bool>
384
385    <!-- Diable puk unlockscreen by default.
386         If unlock screen is disabled, the puk should be unlocked through Emergency Dialer -->
387    <bool name="config_enable_puk_unlock_screen">false</bool>
388
389    <!-- Control the behavior when the user long presses the power button.
390            0 - Nothing
391            1 - Recent apps dialog
392            2 - Recent apps view in SystemUI
393         This needs to match the constants in
394         policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
395    -->
396    <integer name="config_longPressOnHomeBehavior">2</integer>
397
398    <!-- Array of light sensor LUX values to define our levels for auto backlight brightness support.
399         The N entries of this array define N + 1 zones as follows:
400
401         Zone 0:        0 <= LUX < array[0]
402         Zone 1:        array[0] <= LUX < array[1]
403         ...
404         Zone N:        array[N - 1] <= LUX < array[N]
405         Zone N + 1:    array[N] <= LUX < infinity
406
407         Must be overridden in platform specific overlays -->
408    <integer-array name="config_autoBrightnessLevels">
409    </integer-array>
410
411    <!-- Array of output values for LCD backlight corresponding to the LUX values
412         in the config_autoBrightnessLevels array.  This array should have size one greater
413         than the size of the config_autoBrightnessLevels array.
414         This must be overridden in platform specific overlays -->
415    <integer-array name="config_autoBrightnessLcdBacklightValues">
416    </integer-array>
417
418    <!-- Array of output values for button backlight corresponding to the LUX values
419         in the config_autoBrightnessLevels array.  This array should have size one greater
420         than the size of the config_autoBrightnessLevels array.
421         This must be overridden in platform specific overlays -->
422    <integer-array name="config_autoBrightnessButtonBacklightValues">
423    </integer-array>
424
425    <!-- Array of output values for keyboard backlight corresponding to the LUX values
426         in the config_autoBrightnessLevels array.  This array should have size one greater
427         than the size of the config_autoBrightnessLevels array.
428         This must be overridden in platform specific overlays -->
429    <integer-array name="config_autoBrightnessKeyboardBacklightValues">
430    </integer-array>
431
432    <!-- Amount of time it takes for the light sensor to warm up in milliseconds.
433         For this time after the screen turns on, the Power Manager
434         will not debounce light sensor readings -->
435    <integer name="config_lightSensorWarmupTime">0</integer>
436
437    <!-- Enables swipe versus poly-finger touch disambiguation in the KeyboardView -->
438    <bool name="config_swipeDisambiguation">true</bool>
439
440    <!-- Enables special filtering code in the framework for raw touch events
441         from the touch driver.  This code exists for one particular device,
442         and should not be enabled for any others.  Hopefully in the future
443         it will be removed when the lower-level touch driver generates better
444         data. -->
445    <bool name="config_filterTouchEvents">false</bool>
446
447    <!-- Enables special filtering code in the framework for raw touch events
448         from the touch driver. This code exists for one particular device,
449         and should not be enabled for any others. -->
450    <bool name="config_filterJumpyTouchEvents">false</bool>
451
452    <!-- Specifies the amount of time to disable virtual keys after the screen is touched
453         in order to filter out accidental virtual key presses due to swiping gestures
454         or taps near the edge of the display.  May be 0 to disable the feature.
455         It is recommended that this value be no more than 250 ms.
456         This feature should be disabled for most devices. -->
457    <integer name="config_virtualKeyQuietTimeMillis">0</integer>
458
459    <!-- Component name of the default wallpaper. This will be ImageWallpaper if not 
460         specified -->
461    <string name="default_wallpaper_component">@null</string>
462
463    <!-- Component name of the service providing network location support. -->
464    <string name="config_networkLocationProvider">@null</string>
465
466    <!-- Component name of the service providing geocoder API support. -->
467    <string name="config_geocodeProvider">@null</string>
468
469    <!-- Boolean indicating if current platform supports bluetooth SCO for off call
470    use cases -->
471    <bool name="config_bluetooth_sco_off_call">true</bool>
472
473    <!-- Boolean indicating if current platform supports bluetooth wide band
474         speech -->
475    <bool name="config_bluetooth_wide_band_speech">true</bool>
476
477    <!-- The default data-use polling period. -->
478    <integer name="config_datause_polling_period_sec">600</integer>
479
480    <!-- The default data-use threshold in bytes. 0 disables-->
481    <integer name="config_datause_threshold_bytes">0</integer>
482
483    <!-- The default reduced-datarate value in kilobits per sec -->
484    <integer name="config_datause_throttle_kbitsps">300</integer>
485
486    <!-- The default iface on which to monitor data use -->
487    <string name="config_datause_iface">rmnet0</string>
488
489    <!-- The default reduced-datarate notification mask -->
490    <!-- 2 means give warning -->
491    <integer name="config_datause_notification_type">2</integer>
492
493    <!-- Flag indicating whether the current device is "voice capable".
494         If true, this means that the device supports circuit-switched
495         (i.e. voice) phone calls over the telephony network, and is
496         allowed to display the in-call UI while a cellular voice call is
497         active.  This can be overridden to false for "data only" devices
498         which can't make voice calls and don't support any in-call UI.
499
500         Note: this flag is subtly different from the
501         PackageManager.FEATURE_TELEPHONY system feature, which is
502         available on *any* device with a telephony radio, even if the
503         device is data-only. -->
504    <bool name="config_voice_capable">true</bool>
505
506    <!-- Flag indicating whether the current device allows sms service.
507         If true, this means that the device supports both sending and
508         receiving sms via the telephony network.
509         This can be overridden to false for "data only" devices
510         which can't send and receive sms message.
511
512         Note: Disable SMS also disable voicemail waiting sms,
513               cell broadcasting sms, and MMS. -->
514    <bool name="config_sms_capable">true</bool>
515
516    <!-- IP address of the dns server to use if nobody else suggests one -->
517    <string name="config_default_dns_server">8.8.8.8</string>
518
519    <!-- The default character set for GsmAlphabet -->
520    <!-- Empty string means MBCS is not considered -->
521    <string name="gsm_alphabet_default_charset"></string>
522
523    <!-- Enables SIP on WIFI only -->
524    <bool name="config_sip_wifi_only">false</bool>
525
526    <!-- Enables built-in SIP phone capability -->
527    <bool name="config_built_in_sip_phone">true</bool>
528
529    <!-- Boolean indicating if restoring network selection should be skipped -->
530    <!-- The restoring is handled by modem if it is true-->
531    <bool translatable="false" name="skip_restoring_network_selection">false</bool>
532
533    <!-- Number of database connections opened and managed by framework layer
534         to handle queries on each database. -->
535    <integer name="db_connection_pool_size">1</integer>
536
537    <!-- Max space (in MB) allocated to DownloadManager to store the downloaded
538         files if they are to be stored in DownloadManager's data dir,
539         which typically is /data/data/com.android.providers.downloads/files -->
540    <integer name="config_downloadDataDirSize">100</integer>
541
542    <!-- Max number of downloads allowed to proceed concurrently -->
543    <integer name="config_MaxConcurrentDownloadsAllowed">5</integer>
544
545    <!-- When the free space available in DownloadManager's data dir falls
546         below the percentage value specified by this param, DownloadManager
547         starts removing files to try to make percentage of available
548         free space above this threshold value. -->
549    <integer name="config_downloadDataDirLowSpaceThreshold">10</integer>
550
551    <!-- The URL that should be sent in an x-wap-profile header with an HTTP request,
552         as defined in the Open Mobile Alliance User Agent Profile specification
553         OMA-TS-UAProf-V2_0-20060206-A Section 8.1.1.1. If the URL contains a '%s'
554         format string then that substring will be replaced with the value of
555         Build.MODEL. The format string shall not be escaped. -->
556    <string name="config_useragentprofile_url"></string>
557
558    <!-- When a database query is executed, the results retuned are paginated
559         in pages of size (in KB) indicated by this value -->
560    <integer name="config_cursorWindowSize">2048</integer>
561
562    <!-- Sets whether menu shortcuts should be displayed on panel menus when
563         a keyboard is present. -->
564    <bool name="config_showMenuShortcutsWhenKeyboardPresent">false</bool>
565
566    <!-- Do not translate. Defines the slots is Two Digit Number for dialing normally not USSD -->
567    <string-array name="config_twoDigitNumberPattern">
568    </string-array>
569
570    <!-- The VoiceMail default value is displayed to my own number if it is true -->
571    <bool name="config_telephony_use_own_number_for_voicemail">false</bool>
572
573    <!-- If this value is true, Sms encoded as octet is decoded by utf8 decoder.
574         If false, decoded by Latin decoder. -->
575    <bool name="config_sms_utf8_support">false</bool>
576
577    <!-- If this value is true, The mms content-disposition field is supported correctly.
578         If false, Content-disposition fragments are ignored -->
579    <bool name="config_mms_content_disposition_support">true</bool>
580
581    <!-- If this value is true, the carrier supports sms delivery reports.
582         If false, sms delivery reports are not supported and the preference
583         option to enable/disable delivery reports is removed in the Messaging app. -->
584    <bool name="config_sms_delivery_reports_support">true</bool>
585
586    <!-- If this value is true, the carrier supports mms delivery reports.
587         If false, mms delivery reports are not supported and the preference
588         option to enable/disable delivery reports is removed in the Messaging app. -->
589    <bool name="config_mms_delivery_reports_support">true</bool>
590
591    <!-- If this value is true, the carrier supports mms read reports.
592         If false, mms read reports are not supported and the preference
593         option to enable/disable read reports is removed in the Messaging app. -->
594    <bool name="config_mms_read_reports_support">true</bool>
595
596    <!-- National Language Identifier codes for the following two config items.
597         (from 3GPP TS 23.038 V9.1.1 Table 6.2.1.2.4.1):
598          0  - reserved
599          1  - Turkish
600          2  - Spanish (single shift table only)
601          3  - Portuguese
602          4  - Bengali
603          5  - Gujarati
604          6  - Hindi
605          7  - Kannada
606          8  - Malayalam
607          9  - Oriya
608         10  - Punjabi
609         11  - Tamil
610         12  - Telugu
611         13  - Urdu
612         14+ - reserved -->
613
614    <!-- National language single shift tables to enable for SMS encoding.
615         Decoding is always enabled. 3GPP TS 23.038 states that this feature
616         should not be enabled until a formal request is issued by the relevant
617         national regulatory body. Array elements are codes from the table above.
618         Example 1: devices sold in Turkey must include table 1 to conform with
619           By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
620         Example 2: devices sold in India should include tables 4 through 13
621           to enable use of the new Release 9 tables for Indic languages. -->
622    <integer-array name="config_sms_enabled_single_shift_tables"></integer-array>
623
624    <!-- National language locking shift tables to enable for SMS encoding.
625         Decoding is always enabled. 3GPP TS 23.038 states that this feature
626         should not be enabled until a formal request is issued by the relevant
627         national regulatory body. Array elements are codes from the table above.
628         Example 1: devices sold in Turkey must include table 1 after the
629           Turkish Telecommunication Authority requires locking shift encoding
630           to be enabled (est. July 2012). (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
631           See also: http://www.mobitech.com.tr/tr/ersanozturkblog_en/index.php?entry=entry090223-160014
632         Example 2: devices sold in India should include tables 4 through 13
633         to enable use of the new Release 9 tables for Indic languages. -->
634    <integer-array name="config_sms_enabled_locking_shift_tables"></integer-array>
635
636    <!-- Set to true if the RSSI should always display CDMA signal strength even on EVDO -->
637    <bool name="config_alwaysUseCdmaRssi">false</bool>
638
639
640    <!-- If this value is true, duplicate Source/Destination port fields
641         in WDP header of some carriers OMADM wap push are supported.
642         ex: MSGTYPE-TotalSegments-CurrentSegment
643             -SourcePortDestPort-SourcePortDestPort-OMADM PDU
644         If false, not supported. -->
645    <bool name="config_duplicate_port_omadm_wappush">false</bool>
646
647    <!-- Maximum numerical value that will be shown in a status bar
648         notification icon or in the notification itself. Will be replaced
649         with @string/status_bar_notification_info_overflow when shown in the
650         UI. -->
651    <integer name="status_bar_notification_info_maxnum">999</integer>
652
653    <!-- Path to an ISO image to be shared with via USB mass storage.
654         This is intended to allow packaging drivers or tools for installation on a PC. -->
655    <string translatable="false" name="config_isoImagePath"></string>
656
657</resources>
658