config.xml revision 2b8bcfe5b74e1a34d136f4ff46e3c94397f38f82
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    <bool name="config_statusBarCanHide">true</bool>
24
25    <!-- Do not translate. Defines the slots for the right-hand side icons.  That is to say, the
26         icons in the status bar that are not notifications. -->
27    <string-array name="config_statusBarIcons">
28       <item><xliff:g id="id">ime</xliff:g></item>
29       <item><xliff:g id="id">sync_failing</xliff:g></item>
30       <item><xliff:g id="id">sync_active</xliff:g></item>
31       <item><xliff:g id="id">gps</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">mute</xliff:g></item>
37       <item><xliff:g id="id">volume</xliff:g></item>
38       <item><xliff:g id="id">wifi</xliff:g></item>
39       <item><xliff:g id="id">cdma_eri</xliff:g></item>
40       <item><xliff:g id="id">data_connection</xliff:g></item>
41       <item><xliff:g id="id">phone_evdo_signal</xliff:g></item>
42       <item><xliff:g id="id">phone_signal</xliff:g></item>
43       <item><xliff:g id="id">battery</xliff:g></item>
44       <item><xliff:g id="id">alarm_clock</xliff:g></item>
45       <item><xliff:g id="id">secure</xliff:g></item>
46       <item><xliff:g id="id">clock</xliff:g></item>
47    </string-array>
48
49    <!-- Flag indicating whether the surface flinger has limited
50         alpha compositing functionality in hardware.  If set, the window
51         manager will disable alpha trasformation in animations where not
52         strictly needed. -->
53    <bool name="config_sf_limitedAlpha">false</bool>
54
55    <!-- Default value used to block data calls if ims is not
56         connected.  If you use the ims apn DCT will block
57         any other apn from connecting until ims apn is connected-->
58    <bool name="ImsConnectedDefaultValue">false</bool>
59    
60    <!-- Flag indicating whether the surface flinger is inefficient
61         at performing a blur.  Used by parts of the UI to turn off
62         the blur effect where it isn't worth the performance hit. -->
63    <bool name="config_sf_slowBlur">false</bool>
64    
65    <!-- The duration (in milliseconds) of a short animation. -->
66    <integer name="config_shortAnimTime">200</integer>
67    
68    <!-- The duration (in milliseconds) of a medium-length animation. -->
69    <integer name="config_mediumAnimTime">400</integer>
70    
71    <!-- The duration (in milliseconds) of a long animation. -->
72    <integer name="config_longAnimTime">500</integer>
73
74    <!-- The duration (in milliseconds) of the activity open/close and fragment open/close animations. -->
75    <integer name="config_activityShortDur">150</integer>
76    <integer name="config_activityDefaultDur">220</integer>
77    
78    <!-- Duration for the dim animation behind a dialog.  This may be either
79         a percentage, which is relative to the duration of the enter/open
80         animation of the window being shown that is dimming behind, or it may
81         be an integer for a constant duration. -->
82    <fraction name="config_dimBehindFadeDuration">100%</fraction>
83
84    <!-- The maximum width we would prefer dialogs to be.  0 if there is no
85         maximum (let them grow as large as the screen).  Actual values are
86         specified for -large and -xlarge configurations. -->
87    <dimen name="config_prefDialogWidth">0px</dimen>
88    
89    <!-- Whether dialogs should close automatically when the user touches outside
90         of them.  This should not normally be modified. -->
91    <bool name="config_closeDialogWhenTouchOutside">false</bool>
92    
93    <!-- The duration (in milliseconds) that the radio will scan for a signal
94         when there's no network connection. If the scan doesn't timeout, use zero -->
95    <integer name="config_radioScanningTimeout">0</integer>
96
97    <!-- Set to true if the location returned Environment.getExternalStorageDirectory()
98         is actually a subdirectory of the internal storage.
99         If this is set then Environment.getExternalStorageState() will always return
100         MEDIA_MOUNTED and Intent.ACTION_MEDIA_MOUNTED will be broadcast at boot time
101         for backward compatibility with apps that require external storage. -->
102    <bool name="config_emulateExternalStorage">false</bool>
103
104    <!-- Set to true if external storage is case sensitive.
105         Typically external storage is FAT, which is case insensitive. -->
106    <bool name="config_caseSensitiveExternalStorage">false</bool>
107    
108    <!-- A product with no SD card == not removable. -->
109    <bool name="config_externalStorageRemovable" product="nosdcard">false</bool>
110    <!-- Configures whether the primary external storage device is
111         removable.  For example, if external storage is on an SD card,
112         it is removable; if it is built in to the device, it is not removable.
113         The default product has external storage on an SD card, which is
114         removable. -->
115    <bool name="config_externalStorageRemovable" product="default">true</bool>
116
117    <!-- Number of megabytes of space to leave unallocated by MTP.
118         MTP will subtract this value from the free space it reports back
119         to the host via GetStorageInfo, and will not allow new files to
120         be added via MTP if there is less than this amount left free in the storage.
121         If MTP has dedicated storage this value should be zero, but if MTP is
122         sharing storage with the rest of the system, set this to a positive value
123         to ensure that MTP activity does not result in the storage being
124         too close to full. -->
125    <integer name="config_mtpReserveSpaceMegabytes">0</integer>
126
127    <!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
128         Please don't copy them, copy anything else. -->
129
130    <!-- This string array should be overridden by the device to present a list of network
131         attributes.  This is used by the connectivity manager to decide which networks can coexist
132         based on the hardware -->
133    <!-- An Array of "[Connection name],[ConnectivityManager connection type],
134         [associated radio-type],[priority]  -->
135    <string-array translatable="false" name="networkAttributes">
136        <item>"wifi,1,1,1"</item>
137        <item>"mobile,0,0,0"</item>
138        <item>"mobile_mms,2,0,2"</item>
139        <item>"mobile_supl,3,0,2"</item>
140        <item>"mobile_hipri,5,0,3"</item>
141        <item>"mobile_fota,8,0,2"</item>
142        <item>"mobile_ims,9,0,2"</item>
143        <item>"mobile_cbs,10,0,2"</item>
144    </string-array>
145
146    <!-- This string array should be overridden by the device to present a list of radio
147         attributes.  This is used by the connectivity manager to decide which networks can coexist
148         based on the hardware -->
149    <!-- An Array of "[ConnectivityManager connectionType],
150                      [# simultaneous connection types]"  -->
151    <string-array translatable="false" name="radioAttributes">
152        <item>"1,1"</item>
153        <item>"0,1"</item>
154    </string-array>
155
156    <!-- The maximum duration (in milliseconds) we expect a network transition to take -->
157    <integer name="config_networkTransitionTimeout">60000</integer>
158
159    <!-- List of regexpressions describing the interface (if any) that represent tetherable
160         USB interfaces.  If the device doesn't want to support tething over USB this should
161         be empty.  An example would be "usb.*" -->
162    <string-array translatable="false" name="config_tether_usb_regexs">
163    </string-array>
164
165    <!-- List of regexpressions describing the interface (if any) that represent tetherable
166         Wifi interfaces.  If the device doesn't want to support tethering over Wifi this
167         should be empty.  An example would be "softap.*" -->
168    <string-array translatable="false" name="config_tether_wifi_regexs">
169    </string-array>
170
171    <!-- List of regexpressions describing the interface (if any) that represent tetherable
172         bluetooth interfaces.  If the device doesn't want to support tethering over bluetooth this
173         should be empty. -->
174    <string-array translatable="false" name="config_tether_bluetooth_regexs">
175    </string-array>
176
177    <!-- Max number of Bluetooth tethering connections allowed. If this is
178         updated config_tether_dhcp_range has to be updated appropriately. -->
179    <integer translateable="false" name="config_max_pan_devices">5</integer>
180
181    <!-- Dhcp range (min, max) to use for tethering purposes -->
182    <string-array translatable="false" name="config_tether_dhcp_range">
183    </string-array>
184
185    <!-- Regex array of allowable upstream ifaces for tethering - for example if you want
186         tethering on a new interface called "foo2" add <item>"foo\\d"</item> to the array -->
187    <string-array translatable="false" name="config_tether_upstream_regexs">
188    </string-array>
189
190    <!-- Boolean indicating if we require the use of DUN on mobile for tethering.
191         Note that this defaults to false so that if you move to a carrier that
192         hasn't configured anything tethering will still work.  If you'd rather
193         make the device untetherable on unconfigured devices, set to true -->
194    <bool translatable="false" name="config_tether_dun_required">false</bool>
195
196    <!-- String containing the apn value for tethering.  May be overriden by secure settings
197         TETHER_DUN_APN.  Value is a comma separated series of strings:
198         "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type"
199         note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" -->
200    <string translatable="false" name="config_tether_apndata"></string>
201
202    <!-- Boolean indicating whether the wifi chipset has dual frequency band support -->
203    <bool translatable="false" name="config_wifi_dual_band_support">false</bool>
204
205    <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism.
206         This mechanism allows the host to remain in suspend state and the dongle to actively
207         scan and wake the host when a configured SSID is detected by the dongle. This chipset
208         capability can provide power savings when wifi needs to be always kept on.
209         The driver commands needed to support the feature are BGSCAN-START and BGSCAN-STOP -->
210    <bool translatable="false" name="config_wifi_background_scan_support">false</bool>
211
212    <!-- Flag indicating whether the keyguard should be bypassed when
213         the slider is open.  This can be set or unset depending how easily
214         the slider can be opened (for example, in a pocket or purse). -->
215    <bool name="config_bypass_keyguard_if_slider_open">true</bool>
216    
217    <!-- Flag indicating whether the we should enable the automatic brightness in Settings.
218         Software implementation will be used if config_hardware_auto_brightness_available is not set -->
219    <bool name="config_automatic_brightness_available">false</bool>
220
221    <!-- Don't name config resources like this.  It should look like config_annoyDianne -->
222    <bool name="config_annoy_dianne">true</bool>
223
224    <!-- If this is true, the screen will come on when you unplug usb/power/whatever. -->
225    <bool name="config_unplugTurnsOnScreen">false</bool>
226    
227    <!-- If this is true, the screen will fade off. -->
228    <bool name="config_animateScreenLights">true</bool>
229    
230    <!-- XXXXXX END OF RESOURCES USING WRONG NAMING CONVENTION -->
231
232    <!-- If true, the screen can be rotated via the accelerometer in all 4
233         rotations as the default behavior. -->
234    <bool name="config_allowAllRotations">true</bool>
235
236    <!-- If true, the direction rotation is applied to get to an application's requested
237         orientation is reversed.  Normally, the model is that landscape is
238         clockwise from portrait; thus on a portrait device an app requesting
239         landscape will cause a clockwise rotation, and on a landscape device an
240         app requesting portrait will cause a counter-clockwise rotation.  Setting
241         true here reverses that logic. -->
242    <bool name="config_reverseDefaultRotation">false</bool>
243
244    <!-- The number of degrees to rotate the display when the keyboard is open. -->
245    <integer name="config_lidOpenRotation">90</integer>
246
247    <!-- The number of degrees to rotate the display when the device is in a desk dock.
248         A value of -1 means no change in orientation by default. -->
249    <integer name="config_deskDockRotation">-1</integer>
250
251    <!-- The number of degrees to rotate the display when the device is in a car dock.
252         A value of -1 means no change in orientation by default. -->
253    <integer name="config_carDockRotation">-1</integer>
254
255    <!-- Control whether being in the desk dock (and powered) always
256         keeps the screen on.  By default it stays on when plugged in to
257         AC.  0 will not keep it on; or together 1 to stay on when plugged
258         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
259    <integer name="config_deskDockKeepsScreenOn">1</integer>
260
261    <!-- Control whether being in the car dock (and powered) always
262         keeps the screen on.  By default it stays on when plugged in to
263         AC.  0 will not keep it on; or together 1 to stay on when plugged
264         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
265    <integer name="config_carDockKeepsScreenOn">1</integer>
266
267    <!-- Control whether being in the desk dock should enable accelerometer
268         based screen orientation.  Note this should probably default to true
269         like car dock, but we haven't had a chance to test it. -->
270    <bool name="config_deskDockEnablesAccelerometer">false</bool>
271
272    <!-- Control whether being in the car dock should enable accelerometer based
273         screen orientation.  This defaults to true because putting a device in
274         a car dock make the accelerometer more a physical input (like a lid). -->
275    <bool name="config_carDockEnablesAccelerometer">true</bool>
276
277    <!-- Indicate whether the lid state impacts the accessibility of
278         the physical keyboard.  0 means it doesn't, 1 means it is accessible
279         when the lid is open, 2 means it is accessible when the lid is
280         closed.  The default is 1. -->
281    <integer name="config_lidKeyboardAccessibility">1</integer>
282
283    <!-- Indicate whether the lid state impacts the accessibility of
284         the physical keyboard.  0 means it doesn't, 1 means it is accessible
285         when the lid is open, 2 means it is accessible when the lid is
286         closed.  The default is 0. -->
287    <integer name="config_lidNavigationAccessibility">0</integer>
288
289    <!-- Control the behavior when the user long presses the power button.
290            0 - Nothing
291            1 - Global actions menu
292            2 - Power off (with confirmation)
293    -->
294    <integer name="config_longPressOnPowerBehavior">1</integer>
295
296    <!-- Indicate whether the SD card is accessible without removing the battery. -->
297    <bool name="config_batterySdCardAccessibility">false</bool>
298
299    <!-- Indicate whether the device has USB host support. -->
300    <bool name="config_hasUsbHostSupport">false</bool>
301
302    <!-- List of file paths for USB host busses to exclude from USB host support.
303         For example, if the first USB bus on the device is used to communicate
304         with the modem or some other restricted hardware, add "/dev/bus/usb/001/"
305         to this list.  If this is empty, no parts of the host USB bus will be excluded.
306    -->
307    <string-array name="config_usbHostBlacklist">
308    </string-array>
309
310    <!-- Vibrator pattern for feedback about a long screen/key press -->
311    <integer-array name="config_longPressVibePattern">
312        <item>0</item>
313        <item>1</item>
314        <item>20</item>
315        <item>21</item>
316    </integer-array>
317    
318    <!-- Vibrator pattern for feedback about touching a virtual key -->
319    <integer-array name="config_virtualKeyVibePattern">
320        <item>0</item>
321        <item>10</item>
322        <item>20</item>
323        <item>30</item>
324    </integer-array>
325
326    <!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
327    <integer-array name="config_keyboardTapVibePattern">
328        <item>40</item>
329    </integer-array>
330
331    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
332    <integer-array name="config_safeModeDisabledVibePattern">
333        <item>0</item>
334        <item>1</item>
335        <item>20</item>
336        <item>21</item>
337    </integer-array>
338
339    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
340    <integer-array name="config_safeModeEnabledVibePattern">
341        <item>0</item>
342        <item>1</item>
343        <item>20</item>
344        <item>21</item>
345        <item>500</item>
346        <item>600</item>
347    </integer-array>
348
349    <!-- Vibrator pattern for feedback about hitting a scroll barrier -->
350    <integer-array name="config_scrollBarrierVibePattern">
351        <item>0</item>
352        <item>15</item>
353        <item>10</item>
354        <item>10</item>
355    </integer-array>
356
357    <bool name="config_use_strict_phone_number_comparation">false</bool>
358
359    <!-- Display low battery warning when battery level dips to this value.
360         Also, the battery stats are flushed to disk when we hit this level.  -->
361    <integer name="config_criticalBatteryWarningLevel">4</integer>
362
363    <!-- Display low battery warning when battery level dips to this value -->
364    <!-- Display low battery warning when battery level dips to this value -->
365    <integer name="config_lowBatteryWarningLevel">15</integer>
366
367    <!-- Close low battery warning when battery level reaches this value -->
368    <integer name="config_lowBatteryCloseWarningLevel">20</integer>
369
370    <!-- Default color for notification LED. -->
371    <color name="config_defaultNotificationColor">#ff00ff00</color>
372
373    <!-- Default LED on time for notification LED in milliseconds. -->
374    <integer name="config_defaultNotificationLedOn">500</integer>
375
376    <!-- Default LED off time for notification LED in milliseconds. -->
377    <integer name="config_defaultNotificationLedOff">2000</integer>
378
379    <!-- Default value for led color when battery is low on charge -->
380    <integer name="config_notificationsBatteryLowARGB">0xFFFF0000</integer>
381
382    <!-- Default value for led color when battery is medium charged -->
383    <integer name="config_notificationsBatteryMediumARGB">0xFFFFFF00</integer>
384
385    <!-- Default value for led color when battery is fully charged -->
386    <integer name="config_notificationsBatteryFullARGB">0xFF00FF00</integer>
387
388    <!-- Default value for LED on time when the battery is low on charge in miliseconds -->
389    <integer name="config_notificationsBatteryLedOn">125</integer>
390
391    <!-- Default value for LED off time when the battery is low on charge in miliseconds -->
392    <integer name="config_notificationsBatteryLedOff">2875</integer>
393
394    <!-- Allow the menu hard key to be disabled in LockScreen on some devices -->
395    <bool name="config_disableMenuKeyInLockScreen">false</bool>
396
397    <!-- Show sliding tab before lockscreen -->
398    <bool name="config_enableSlidingTabFirst">true</bool>
399
400    <!-- Diable lockscreen rotation by default -->
401    <bool name="config_enableLockScreenRotation">false</bool>
402
403    <!-- Control the behavior when the user long presses the power button.
404            0 - Nothing
405            1 - Recent apps dialog
406            2 - Recent apps activity in SystemUI
407    -->
408    <integer name="config_longPressOnHomeBehavior">1</integer>
409
410    <!-- Array of light sensor LUX values to define our levels for auto backlight brightness support.
411         The N entries of this array define N + 1 zones as follows:
412
413         Zone 0:        0 <= LUX < array[0]
414         Zone 1:        array[0] <= LUX < array[1]
415         ...
416         Zone N:        array[N - 1] <= LUX < array[N]
417         Zone N + 1:    array[N] <= LUX < infinity
418
419         Must be overridden in platform specific overlays -->
420    <integer-array name="config_autoBrightnessLevels">
421    </integer-array>
422
423    <!-- Array of output values for LCD backlight corresponding to the LUX values
424         in the config_autoBrightnessLevels array.  This array should have size one greater
425         than the size of the config_autoBrightnessLevels array.
426         This must be overridden in platform specific overlays -->
427    <integer-array name="config_autoBrightnessLcdBacklightValues">
428    </integer-array>
429
430    <!-- Array of output values for button backlight corresponding to the LUX values
431         in the config_autoBrightnessLevels array.  This array should have size one greater
432         than the size of the config_autoBrightnessLevels array.
433         This must be overridden in platform specific overlays -->
434    <integer-array name="config_autoBrightnessButtonBacklightValues">
435    </integer-array>
436
437    <!-- Array of output values for keyboard backlight corresponding to the LUX values
438         in the config_autoBrightnessLevels array.  This array should have size one greater
439         than the size of the config_autoBrightnessLevels array.
440         This must be overridden in platform specific overlays -->
441    <integer-array name="config_autoBrightnessKeyboardBacklightValues">
442    </integer-array>
443
444    <!-- Amount of time it takes for the light sensor to warm up in milliseconds.
445         For this time after the screen turns on, the Power Manager
446         will not debounce light sensor readings -->
447    <integer name="config_lightSensorWarmupTime">0</integer>
448
449    <!-- Enables swipe versus poly-finger touch disambiguation in the KeyboardView -->
450    <bool name="config_swipeDisambiguation">true</bool>
451
452    <!-- Enables special filtering code in the framework for raw touch events
453         from the touch driver.  This code exists for one particular device,
454         and should not be enabled for any others.  Hopefully in the future
455         it will be removed when the lower-level touch driver generates better
456         data. -->
457    <bool name="config_filterTouchEvents">false</bool>
458
459    <!-- Enables special filtering code in the framework for raw touch events
460         from the touch driver. This code exists for one particular device,
461         and should not be enabled for any others. -->
462    <bool name="config_filterJumpyTouchEvents">false</bool>
463
464    <!-- Specifies the amount of time to disable virtual keys after the screen is touched
465         in order to filter out accidental virtual key presses due to swiping gestures
466         or taps near the edge of the display.  May be 0 to disable the feature.
467         It is recommended that this value be no more than 250 ms.
468         This feature should be disabled for most devices. -->
469    <integer name="config_virtualKeyQuietTimeMillis">0</integer>
470
471    <!-- Component name of the default wallpaper. This will be ImageWallpaper if not 
472         specified -->
473    <string name="default_wallpaper_component">@null</string>
474
475    <!-- Component name of the service providing network location support. -->
476    <string name="config_networkLocationProvider">@null</string>
477
478    <!-- Component name of the service providing geocoder API support. -->
479    <string name="config_geocodeProvider">@null</string>
480
481    <!-- Boolean indicating if current platform supports bluetooth SCO for off call
482    use cases -->
483    <bool name="config_bluetooth_sco_off_call">true</bool>
484
485    <!-- The default data-use polling period. -->
486    <integer name="config_datause_polling_period_sec">600</integer>
487
488    <!-- The default data-use threshold in bytes. 0 disables-->
489    <integer name="config_datause_threshold_bytes">0</integer>
490
491    <!-- The default reduced-datarate value in kilobits per sec -->
492    <integer name="config_datause_throttle_kbitsps">300</integer>
493
494    <!-- The default iface on which to monitor data use -->
495    <string name="config_datause_iface">rmnet0</string>
496
497    <!-- The default reduced-datarate notification mask -->
498    <!-- 2 means give warning -->
499    <integer name="config_datause_notification_type">2</integer>
500
501    <!-- Flag indicating whether the current device is "voice capable".
502         If true, this means that the device supports circuit-switched
503         (i.e. voice) phone calls over the telephony network, and is
504         allowed to display the in-call UI while a cellular voice call is
505         active.  This can be overridden to false for "data only" devices
506         which can't make voice calls and don't support any in-call UI.
507
508         Note: this flag is subtly different from the
509         PackageManager.FEATURE_TELEPHONY system feature, which is
510         available on *any* device with a telephony radio, even if the
511         device is data-only. -->
512    <bool name="config_voice_capable">true</bool>
513
514    <!-- Flag indicating whether the current device allows sms service.
515         If true, this means that the device supports both sending and
516         receiving sms via the telephony network.
517         This can be overridden to false for "data only" devices
518         which can't send and receive sms message.
519
520         Note: Disable SMS also disable voicemail waiting sms,
521               cell broadcasting sms, and MMS. -->
522    <bool name="config_sms_capable">true</bool>
523
524    <!-- IP address of the dns server to use if nobody else suggests one -->
525    <string name="config_default_dns_server">8.8.8.8</string>
526
527    <!-- The default character set for GsmAlphabet -->
528    <!-- Empty string means MBCS is not considered -->
529    <string name="gsm_alphabet_default_charset"></string>
530
531    <!-- Enables SIP on WIFI only -->
532    <bool name="config_sip_wifi_only">true</bool>
533
534    <!-- Enables built-in SIP phone capability -->
535    <bool name="config_built_in_sip_phone">false</bool>
536
537    <!-- Boolean indicating if restoring network selection should be skipped -->
538    <!-- The restoring is handled by modem if it is true-->
539    <bool translatable="false" name="skip_restoring_network_selection">false</bool>
540
541    <!-- Number of database connections opened and managed by framework layer
542         to handle queries on each database. -->
543    <integer name="db_connection_pool_size">1</integer>
544
545    <!-- Max space (in MB) allocated to DownloadManager to store the downloaded
546         files if they are to be stored in DownloadManager's data dir,
547         which typically is /data/data/com.android.providers.downloads/files -->
548    <integer name="config_downloadDataDirSize">100</integer>
549
550    <!-- When the free space available in DownloadManager's data dir falls
551         below the percentage value specified by this param, DownloadManager
552         starts removing files to try to make percentage of available
553         free space above this threshold value. -->
554    <integer name="config_downloadDataDirLowSpaceThreshold">10</integer>
555
556    <!-- The URL that should be sent in an x-wap-profile header with an HTTP request,
557         as defined in the Open Mobile Alliance User Agent Profile specification
558         OMA-TS-UAProf-V2_0-20060206-A Section 8.1.1.1. If the URL contains a '%s'
559         format string then that substring will be replaced with the value of
560         Build.MODEL. The format string shall not be escaped. -->
561    <string name="config_useragentprofile_url"></string>
562
563    <!-- When a database query is executed, the results retuned are paginated
564         in pages of size (in KB) indicated by this value -->
565    <integer name="config_cursorWindowSize">2048</integer>
566
567    <!-- Sets whether menu shortcuts should be displayed on panel menus when
568         a keyboard is present. -->
569    <bool name="config_showMenuShortcutsWhenKeyboardPresent">false</bool>
570
571    <!-- Do not translate. Defines the slots is Two Digit Number for dialing normally not USSD -->
572    <string-array name="config_twoDigitNumberPattern">
573    </string-array>
574</resources>
575