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