OSDN Git Service

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