config.xml revision 94260caf2fb3f5dbf6e17b29a269b46ea05f8680
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    <!-- Component to be used as the status bar service.  Must implement the IStatusBar
24         interface.  This name is in the ComponentName flattened format (package/class)  -->
25    <string name="config_statusBarComponent">com.android.systemui/com.android.systemui.statusbar.StatusBarService</string>
26
27    <!-- Do not translate. Defines the slots for the right-hand side icons.  That is to say, the
28         icons in the status bar that are not notifications. -->
29    <string-array name="config_statusBarIcons">
30       <item><xliff:g id="id">ime</xliff:g></item>
31       <item><xliff:g id="id">sync_failing</xliff:g></item>
32       <item><xliff:g id="id">sync_active</xliff:g></item>
33       <item><xliff:g id="id">gps</xliff:g></item>
34       <item><xliff:g id="id">bluetooth</xliff:g></item>
35       <item><xliff:g id="id">nfc</xliff:g></item>
36       <item><xliff:g id="id">tty</xliff:g></item>
37       <item><xliff:g id="id">speakerphone</xliff:g></item>
38       <item><xliff:g id="id">mute</xliff:g></item>
39       <item><xliff:g id="id">volume</xliff:g></item>
40       <item><xliff:g id="id">wifi</xliff:g></item>
41       <item><xliff:g id="id">cdma_eri</xliff:g></item>
42       <item><xliff:g id="id">data_connection</xliff:g></item>
43       <item><xliff:g id="id">phone_evdo_signal</xliff:g></item>
44       <item><xliff:g id="id">phone_signal</xliff:g></item>
45       <item><xliff:g id="id">battery</xliff:g></item>
46       <item><xliff:g id="id">alarm_clock</xliff:g></item>
47       <item><xliff:g id="id">secure</xliff:g></item>
48       <item><xliff:g id="id">clock</xliff:g></item>
49    </string-array>
50
51    <!-- Flag indicating whether the surface flinger has limited
52         alpha compositing functionality in hardware.  If set, the window
53         manager will disable alpha trasformation in animations where not
54         strictly needed. -->
55    <bool name="config_sf_limitedAlpha">false</bool>
56    
57    <!-- Flag indicating whether the surface flinger is inefficient
58         at performing a blur.  Used by parts of the UI to turn off
59         the blur effect where it isn't worth the performance hit. -->
60    <bool name="config_sf_slowBlur">false</bool>
61    
62    <!-- The duration (in milliseconds) of a short animation. -->
63    <integer name="config_shortAnimTime">150</integer>
64    
65    <!-- The duration (in milliseconds) of a medium-length animation. -->
66    <integer name="config_mediumAnimTime">300</integer>
67    
68    <!-- The duration (in milliseconds) of a long animation. -->
69    <integer name="config_longAnimTime">400</integer>
70
71    <!-- The duration (in milliseconds) that the radio will scan for a signal
72         when there's no network connection. If the scan doesn't timeout, use zero -->
73    <integer name="config_radioScanningTimeout">0</integer>
74
75    <!-- A product with no SD card == not removable. -->
76    <bool name="config_externalStorageRemovable" product="nosdcard">false</bool>
77    <!-- Configures whether the primary external storage device is
78         removable.  For example, if external storage is on an SD card,
79         it is removable; if it is built in to the device, it is not removable.
80         The default product has external storage on an SD card, which is
81         removable. -->
82    <bool name="config_externalStorageRemovable" product="default">true</bool>
83
84    <!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
85         Please don't copy them, copy anything else. -->
86
87    <!-- This string array should be overridden by the device to present a list of network
88         attributes.  This is used by the connectivity manager to decide which networks can coexist
89         based on the hardware -->
90    <!-- An Array of "[Connection name],[ConnectivityManager connection type],
91         [associated radio-type],[priority]  -->
92    <string-array translatable="false" name="networkAttributes">
93        <item>"wifi,1,1,1"</item>
94        <item>"mobile,0,0,0"</item>
95        <item>"mobile_mms,2,0,2"</item>
96        <item>"mobile_supl,3,0,2"</item>
97        <item>"mobile_hipri,5,0,3"</item>
98    </string-array>
99
100    <!-- This string array should be overridden by the device to present a list of radio
101         attributes.  This is used by the connectivity manager to decide which networks can coexist
102         based on the hardware -->
103    <!-- An Array of "[ConnectivityManager connectionType],
104                      [# simultaneous connection types]"  -->
105    <string-array translatable="false" name="radioAttributes">
106        <item>"1,1"</item>
107        <item>"0,1"</item>
108    </string-array>
109
110    <!-- List of regexpressions describing the interface (if any) that represent tetherable
111         USB interfaces.  If the device doesn't want to support tething over USB this should
112         be empty.  An example would be "usb.*" -->
113    <string-array translatable="false" name="config_tether_usb_regexs">
114    </string-array>
115
116    <!-- List of regexpressions describing the interface (if any) that represent tetherable
117         Wifi interfaces.  If the device doesn't want to support tethering over Wifi this
118         should be empty.  An example would be "softap.*" -->
119    <string-array translatable="false" name="config_tether_wifi_regexs">
120    </string-array>
121
122    <!-- Dhcp range (min, max) to use for tethering purposes -->
123    <string-array translatable="false" name="config_tether_dhcp_range">
124    </string-array>
125
126    <!-- Regex array of allowable upstream ifaces for tethering - for example if you want
127         tethering on a new interface called "foo2" add <item>"foo\\d"</item> to the array -->
128    <!-- Interfaces will be prioritized according to the order listed -->
129    <string-array translatable="false" name="config_tether_upstream_regexs">
130    </string-array>
131
132    <!-- Boolean indicating if we require the use of DUN on mobile for tethering.
133         Note that this defaults to false so that if you move to a carrier that
134         hasn't configured anything tethering will still work.  If you'd rather
135         make the device untetherable on unconfigured devices, set to true -->
136    <bool translatable="false" name="config_tether_dun_required">false</bool>
137
138    <!-- String containing the apn value for tethering.  May be overriden by secure settings
139         TETHER_DUN_APN.  Value is a comma separated series of strings:
140         "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type"
141         note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" -->
142    <string translatable="false" name="config_tether_apndata"></string>
143
144
145    <!-- Flag indicating whether the keyguard should be bypassed when
146         the slider is open.  This can be set or unset depending how easily
147         the slider can be opened (for example, in a pocket or purse). -->
148    <bool name="config_bypass_keyguard_if_slider_open">true</bool>
149    
150    <!-- Flag indicating whether the we should enable the automatic brightness in Settings.
151         Software implementation will be used if config_hardware_auto_brightness_available is not set -->
152    <bool name="config_automatic_brightness_available">false</bool>
153
154    <!-- Don't name config resources like this.  It should look like config_annoyDianne -->
155    <bool name="config_annoy_dianne">true</bool>
156
157    <!-- If this is true, the screen will come on when you unplug usb/power/whatever. -->
158    <bool name="config_unplugTurnsOnScreen">false</bool>
159    
160    <!-- If this is true, the screen will fade off. -->
161    <bool name="config_animateScreenLights">true</bool>
162    
163    <!-- XXXXXX END OF RESOURCES USING WRONG NAMING CONVENTION -->
164
165    <!-- The number of degrees to rotate the display when the keyboard is open. -->
166    <integer name="config_lidOpenRotation">90</integer>
167
168    <!-- The number of degrees to rotate the display when the device is in a desk dock.
169         A value of -1 means no change in orientation by default. -->
170    <integer name="config_deskDockRotation">-1</integer>
171
172    <!-- The number of degrees to rotate the display when the device is in a car dock.
173         A value of -1 means no change in orientation by default. -->
174    <integer name="config_carDockRotation">-1</integer>
175
176    <!-- Control whether being in the desk dock (and powered) always
177         keeps the screen on.  By default it stays on when plugged in to
178         AC.  0 will not keep it on; or together 1 to stay on when plugged
179         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
180    <integer name="config_deskDockKeepsScreenOn">1</integer>
181
182    <!-- Control whether being in the car dock (and powered) always
183         keeps the screen on.  By default it stays on when plugged in to
184         AC.  0 will not keep it on; or together 1 to stay on when plugged
185         in to AC and 2 to stay on when plugged in to USB.  (So 3 for both.) -->
186    <integer name="config_carDockKeepsScreenOn">1</integer>
187
188    <!-- Control whether being in the desk dock should enable accelerometer
189         based screen orientation.  Note this should probably default to true
190         like car dock, but we haven't had a chance to test it. -->
191    <bool name="config_deskDockEnablesAccelerometer">false</bool>
192
193    <!-- Control whether being in the car dock should enable accelerometer based
194         screen orientation.  This defaults to true because putting a device in
195         a car dock make the accelerometer more a physical input (like a lid). -->
196    <bool name="config_carDockEnablesAccelerometer">true</bool>
197
198    <!-- Indicate whether the lid state impacts the accessibility of
199         the physical keyboard.  0 means it doesn't, 1 means it is accessible
200         when the lid is open, 2 means it is accessible when the lid is
201         closed.  The default is 1. -->
202    <integer name="config_lidKeyboardAccessibility">1</integer>
203
204    <!-- Indicate whether the lid state impacts the accessibility of
205         the physical keyboard.  0 means it doesn't, 1 means it is accessible
206         when the lid is open, 2 means it is accessible when the lid is
207         closed.  The default is 0. -->
208    <integer name="config_lidNavigationAccessibility">0</integer>
209
210    <!-- Indicate whether the SD card is accessible without removing the battery. -->
211    <bool name="config_batterySdCardAccessibility">false</bool>
212
213    <!-- Vibrator pattern for feedback about a long screen/key press -->
214    <integer-array name="config_longPressVibePattern">
215        <item>0</item>
216        <item>1</item>
217        <item>20</item>
218        <item>21</item>
219    </integer-array>
220    
221    <!-- Vibrator pattern for feedback about touching a virtual key -->
222    <integer-array name="config_virtualKeyVibePattern">
223        <item>0</item>
224        <item>10</item>
225        <item>20</item>
226        <item>30</item>
227    </integer-array>
228
229    <!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
230    <integer-array name="config_keyboardTapVibePattern">
231        <item>40</item>
232    </integer-array>
233
234    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
235    <integer-array name="config_safeModeDisabledVibePattern">
236        <item>0</item>
237        <item>1</item>
238        <item>20</item>
239        <item>21</item>
240    </integer-array>
241
242    <!-- Vibrator pattern for feedback about booting with safe mode disabled -->
243    <integer-array name="config_safeModeEnabledVibePattern">
244        <item>0</item>
245        <item>1</item>
246        <item>20</item>
247        <item>21</item>
248        <item>500</item>
249        <item>600</item>
250    </integer-array>
251
252    <!-- Vibrator pattern for feedback about hitting a scroll barrier -->
253    <integer-array name="config_scrollBarrierVibePattern">
254        <item>0</item>
255        <item>15</item>
256        <item>10</item>
257        <item>10</item>
258    </integer-array>
259
260    <bool name="config_use_strict_phone_number_comparation">false</bool>
261
262    <!-- Display low battery warning when battery level dips to this value -->
263    <integer name="config_lowBatteryWarningLevel">15</integer>
264
265    <!-- Close low battery warning when battery level reaches this value -->
266    <integer name="config_lowBatteryCloseWarningLevel">20</integer>
267
268    <!-- Default color for notification LED. -->
269    <color name="config_defaultNotificationColor">#ff00ff00</color>
270
271    <!-- Default LED on time for notification LED in milliseconds. -->
272    <integer name="config_defaultNotificationLedOn">500</integer>
273
274    <!-- Default LED off time for notification LED in milliseconds. -->
275    <integer name="config_defaultNotificationLedOff">2000</integer>
276
277    <!-- Allow the menu hard key to be disabled in LockScreen on some devices -->
278    <bool name="config_disableMenuKeyInLockScreen">false</bool>
279
280    <!-- Array of light sensor LUX values to define our levels for auto backlight brightness support.
281         The N entries of this array define N + 1 zones as follows:
282
283         Zone 0:        0 <= LUX < array[0]
284         Zone 1:        array[0] <= LUX < array[1]
285         ...
286         Zone N:        array[N - 1] <= LUX < array[N]
287         Zone N + 1:    array[N] <= LUX < infinity
288
289         Must be overridden in platform specific overlays -->
290    <integer-array name="config_autoBrightnessLevels">
291    </integer-array>
292
293    <!-- Array of output values for LCD backlight corresponding to the LUX values
294         in the config_autoBrightnessLevels array.  This array should have size one greater
295         than the size of the config_autoBrightnessLevels array.
296         This must be overridden in platform specific overlays -->
297    <integer-array name="config_autoBrightnessLcdBacklightValues">
298    </integer-array>
299
300    <!-- Array of output values for button backlight corresponding to the LUX values
301         in the config_autoBrightnessLevels array.  This array should have size one greater
302         than the size of the config_autoBrightnessLevels array.
303         This must be overridden in platform specific overlays -->
304    <integer-array name="config_autoBrightnessButtonBacklightValues">
305    </integer-array>
306
307    <!-- Array of output values for keyboard backlight corresponding to the LUX values
308         in the config_autoBrightnessLevels array.  This array should have size one greater
309         than the size of the config_autoBrightnessLevels array.
310         This must be overridden in platform specific overlays -->
311    <integer-array name="config_autoBrightnessKeyboardBacklightValues">
312    </integer-array>
313
314    <!-- Amount of time it takes for the light sensor to warm up in milliseconds.
315         For this time after the screen turns on, the Power Manager
316         will not debounce light sensor readings -->
317    <integer name="config_lightSensorWarmupTime">0</integer>
318
319    <!-- Enables swipe versus poly-finger touch disambiguation in the KeyboardView -->
320    <bool name="config_swipeDisambiguation">true</bool>
321
322    <!-- Enables special filtering code in the framework for raw touch events
323         from the touch driver.  This code exists for one particular device,
324         and should not be enabled for any others.  Hopefully in the future
325         it will be removed when the lower-level touch driver generates better
326         data. -->
327    <bool name="config_filterTouchEvents">false</bool>
328
329    <!-- Enables special filtering code in the framework for raw touch events
330         from the touch driver. This code exists for one particular device,
331         and should not be enabled for any others. -->
332    <bool name="config_filterJumpyTouchEvents">false</bool>
333
334    <!-- Specifies the amount of time to disable virtual keys after the screen is touched
335         in order to filter out accidental virtual key presses due to swiping gestures
336         or taps near the edge of the display.  May be 0 to disable the feature.
337         It is recommended that this value be no more than 250 ms.
338         This feature should be disabled for most devices. -->
339    <integer name="config_virtualKeyQuietTimeMillis">0</integer>
340
341    <!-- Component name of the default wallpaper. This will be ImageWallpaper if not 
342         specified -->
343    <string name="default_wallpaper_component">@null</string>
344
345    <!-- Component name of the service providing network location support. -->
346    <string name="config_networkLocationProvider">@null</string>
347
348    <!-- Component name of the service providing geocoder API support. -->
349    <string name="config_geocodeProvider">@null</string>
350
351    <!-- Boolean indicating if current platform supports bluetooth SCO for off call
352    use cases -->
353    <bool name="config_bluetooth_sco_off_call">true</bool>
354
355    <!-- The default data-use polling period. -->
356    <integer name="config_datause_polling_period_sec">600</integer>
357
358    <!-- The default data-use threshold in bytes. 0 disables-->
359    <integer name="config_datause_threshold_bytes">0</integer>
360
361    <!-- The default reduced-datarate value in kilobits per sec -->
362    <integer name="config_datause_throttle_kbitsps">300</integer>
363
364    <!-- The default iface on which to monitor data use -->
365    <string name="config_datause_iface">rmnet0</string>
366
367    <!-- The default reduced-datarate notification mask -->
368    <!-- 2 means give warning -->
369    <integer name="config_datause_notification_type">2</integer>
370
371    <!-- Enables SIP on WIFI only -->
372    <bool name="config_sip_wifi_only">true</bool>
373
374    <!-- Boolean indicating if restoring network selection should be skipped -->
375    <!-- The restoring is handled by modem if it is true-->
376    <bool translatable="false" name="skip_restoring_network_selection">false</bool>
377
378    <!-- Do not translate. Defines the slots is Two Digit Number for dialing normally not USSD -->
379    <string-array name="config_twoDigitNumberPattern">
380    </string-array>
381
382    <!-- The VoiceMail default value is displayed to my own number if it is true -->
383    <bool name="config_telephony_use_own_number_for_voicemail">false</bool>
384
385    <!-- If this value is true, Sms encoded as octet is decoded by utf8 decoder.
386         If false, decoded by Latin decoder. -->
387    <bool name="config_sms_utf8_support">false</bool>
388
389    <!-- If this value is true, The mms content-disposition field is supported correctly.
390         If false, Content-disposition fragments are ignored -->
391    <bool name="config_mms_content_disposition_support">true</bool>
392
393    <!-- If this value is true, the carrier supports sms delivery reports.
394         If false, sms delivery reports are not supported and the preference
395         option to enable/disable delivery reports is removed in the Messaging app. -->
396    <bool name="config_sms_delivery_reports_support">true</bool>
397
398    <!-- If this value is true, the carrier supports mms delivery reports.
399         If false, mms delivery reports are not supported and the preference
400         option to enable/disable delivery reports is removed in the Messaging app. -->
401    <bool name="config_mms_delivery_reports_support">true</bool>
402
403    <!-- If this value is true, the carrier supports mms read reports.
404         If false, mms read reports are not supported and the preference
405         option to enable/disable read reports is removed in the Messaging app. -->
406    <bool name="config_mms_read_reports_support">true</bool>
407
408    <!-- National Language Identifier codes for the following two config items.
409         (from 3GPP TS 23.038 V9.1.1 Table 6.2.1.2.4.1):
410          0  - reserved
411          1  - Turkish
412          2  - Spanish (single shift table only)
413          3  - Portuguese
414          4  - Bengali
415          5  - Gujarati
416          6  - Hindi
417          7  - Kannada
418          8  - Malayalam
419          9  - Oriya
420         10  - Punjabi
421         11  - Tamil
422         12  - Telugu
423         13  - Urdu
424         14+ - reserved -->
425
426    <!-- National language single shift tables to enable for SMS encoding.
427         Decoding is always enabled. 3GPP TS 23.038 states that this feature
428         should not be enabled until a formal request is issued by the relevant
429         national regulatory body. Array elements are codes from the table above.
430         Example 1: devices sold in Turkey must include table 1 to conform with
431           By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
432         Example 2: devices sold in India should include tables 4 through 13
433           to enable use of the new Release 9 tables for Indic languages. -->
434    <integer-array name="config_sms_enabled_single_shift_tables"></integer-array>
435
436    <!-- National language locking shift tables to enable for SMS encoding.
437         Decoding is always enabled. 3GPP TS 23.038 states that this feature
438         should not be enabled until a formal request is issued by the relevant
439         national regulatory body. Array elements are codes from the table above.
440         Example 1: devices sold in Turkey must include table 1 after the
441           Turkish Telecommunication Authority requires locking shift encoding
442           to be enabled (est. July 2012). (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
443           See also: http://www.mobitech.com.tr/tr/ersanozturkblog_en/index.php?entry=entry090223-160014
444         Example 2: devices sold in India should include tables 4 through 13
445         to enable use of the new Release 9 tables for Indic languages. -->
446    <integer-array name="config_sms_enabled_locking_shift_tables"></integer-array>
447
448    <!-- Set and Unsets WiMAX -->
449    <bool name="config_wimaxEnabled">false</bool>
450    <!-- Location of the wimax framwork jar location -->
451    <string name="config_wimaxServiceJarLocation"></string>
452    <!-- Location of the wimax native library locaiton -->
453    <string name="config_wimaxNativeLibLocation"></string>
454    <!-- Name of the wimax manager class -->
455    <string name="config_wimaxManagerClassname"></string>
456    <!-- Name of the wimax service class -->
457    <string name="config_wimaxServiceClassname"></string>
458    <!-- Name of the wimax state tracker clas -->
459    <string name="config_wimaxStateTrackerClassname"></string>
460</resources>
461