OSDN Git Service

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