blob: 12b35c4e7aef137154a98668e1f841df1e85ca9a [file] [log] [blame]
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Jonathan Basseri000846b2015-06-19 15:17:11 -070017<!-- NOTE: Many variables that used to be in this file have been migrated to
18 CarrierConfigManager.java. Please consider whether new variables belong
19 there before adding to this file. Variables here should be more closely
20 related to devices than to networks. -->
21
Santos Cordon7d4ddf62013-07-10 11:58:08 -070022<!-- Phone app resources that may need to be customized
23 for different hardware or product builds. -->
24<resources>
25 <!-- Flag indicating whether the Phone app should ignore
26 EVENT_SIM_NETWORK_LOCKED events from the Sim. If true, this will
27 prevent the IccNetworkDepersonalizationPanel from being shown,
28 and effectively disable the "Sim network lock" feature. -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070029 <!-- DEPRECATED: Use CarrierConfigManager#KEY_IGNORE_SIM_NETWORK_LOCKED_EVENTS_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070030 <bool name="ignore_sim_network_locked_events">false</bool>
31
32 <!-- Flag indicating whether the Phone app should provide
33 a "Dismiss" button on the SIM network unlock screen.
34 The default value is true.
35 If set to false, there will be *no way* to dismiss the SIM
36 network unlock screen if you don't enter the correct unlock code.
37 (One important consequence: there will be no way to make an
38 Emergency Call if your SIM is network-locked and you don't know
39 the PIN.) -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070040 <!-- DEPRECATED: Use CarrierConfigManager#KEY_SIM_NETWORK_UNLOCK_ALLOW_DISMISS_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070041 <bool name="sim_network_unlock_allow_dismiss">true</bool>
42
43 <!-- OTA configuration values, used when provisioning CDMA devices.
44 Following defaults values of zero means OTA UI is completely disabled.
45 These OTA UI can be enabled by setting config value to one in the product
46 specific overlay file -->
47
48 <!-- Determine whether we want to display the OTA activation screen, which
49 gives the user option to activate or cancel -->
50 <integer name="OtaShowActivationScreen">1</integer>
51 <!-- Determine whether we should show the "listen for instructions" screen after
52 successfully placing the OTA call -->
53 <integer name="OtaShowListeningScreen">0</integer>
54 <!-- The number of times we should show the activation screen/allow the provisioning
55 to fail before just showing an unsuccessful dialog -->
56 <integer name="OtaShowActivateFailTimes">0</integer>
57 <!-- Determine whether or not we should play the success/failure tone -->
58 <integer name="OtaPlaySuccessFailureTone">0</integer>
59
60 <!-- Flag indicating if the phone is a world phone -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070061 <!-- DEPRECATED: Use CarrierConfigManager#KEY_WORLD_PHONE_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070062 <bool name="world_phone">false</bool>
63
64 <!-- If true, enable vibration (haptic feedback) for key presses
65 in the EmergencyDialer activity. The pattern is set on a
66 per-platform basis using config_virtualKeyVibePattern. To be
67 consistent with the regular Dialer, this value should agree
68 with the corresponding values from config.xml under
69 apps/Contacts. -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070070 <!-- DEPRECATED: Use CarrierConfigManager#KEY_ENABLE_DIALER_KEY_VIBRATION_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070071 <bool name="config_enable_dialer_key_vibration">true</bool>
72
Santos Cordon7d4ddf62013-07-10 11:58:08 -070073 <!-- Flag indicating if hac is enabled -->
74 <bool name="hac_enabled">false</bool>
75
76 <!-- Flag indicating if dtmf tone type is enabled -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070077 <!-- DEPRECATED: Use CarrierConfigManager#KEY_DTMF_TYPE_ENABLED_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070078 <bool name="dtmf_type_enabled">false</bool>
79
80 <!-- Flag indicating if auto retry is enabled -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070081 <!-- DEPRECATED: Use CarrierConfigManager#KEY_AUTO_RETRY_ENABLED_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070082 <bool name="auto_retry_enabled">false</bool>
83
84 <!-- Determine whether we want to play local DTMF tones in a call, or
85 just let the radio/BP handle playing of the tones. -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070086 <!-- DEPRECATED: Use CarrierConfigManager#KEY_ALLOW_LOCAL_DTMF_TONES_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070087 <bool name="allow_local_dtmf_tones">true</bool>
88
89 <!-- If true, show an onscreen "Dial" button in the dialer.
90 In practice this is used on all platforms, even the ones with hard SEND/END
91 keys, but for maximum flexibility it's controlled by a flag here
92 (which can be overridden on a per-product basis.) -->
Jonathan Basseri000846b2015-06-19 15:17:11 -070093 <!-- DEPRECATED: Use CarrierConfigManager#KEY_SHOW_ONSCREEN_DIAL_BUTTON_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -070094 <bool name="config_show_onscreen_dial_button">true</bool>
95
96 <!-- Determine whether calls to mute the microphone in PhoneUtils
97 are routed through the android.media.AudioManager class (true) or through
98 the com.android.internal.telephony.Phone interface (false). -->
99 <bool name="send_mic_mute_to_AudioManager">false</bool>
100
101 <!-- Determines if device implements a noise suppression device for in call audio-->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700102 <!-- DEPRECATED: Use CarrierConfigManager#KEY_HAS_IN_CALL_NOISE_SUPPRESSION_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700103 <bool name="has_in_call_noise_suppression">false</bool>
104
105 <!-- Determines if the current device should allow emergency numbers
106 to be logged in the Call Log.
107 (Some carriers require that emergency calls *not* be logged,
108 presumably to avoid the risk of accidental redialing from the
109 call log UI. This is a good idea, so the default here is false.)
110
111 TODO: on the other hand, it might still be useful to have some
112 record of the emergency calls you've made, or to be able to look
113 up the exact date/time of an emergency call. So perhaps we
114 *should* log those calls, but instead fix the call log to disable
115 the "call" button for emergency numbers. -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700116 <!-- DEPRECATED: Use CarrierConfigManager#KEY_ALLOW_EMERGENCY_NUMBERS_IN_CALL_LOG_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700117 <bool name="allow_emergency_numbers_in_call_log">false</bool>
118
119 <!-- If this is true, the SIM card (through Customer Service Profile EF file) will be
120 able to prevent manual operator selection. If false, this SIM setting will be
121 ignored and manual operator selection will always be available. See
122 CPHS4_2.WW6, CPHS B.4.7.1 for more information -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700123 <!-- DEPRECATED: Use CarrierConfigManager#KEY_CSP_ENABLED_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700124 <bool name="csp_enabled">false</bool>
125
126 <!-- If true, removes the Voice Privacy option from Call Settings -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700127 <!-- DEPRECATED: Use CarrierConfigManager#KEY_VOICE_PRIVACY_DISABLE_UI_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700128 <bool name="config_voice_privacy_disable">false</bool>
129
130 <!-- Configure certain GsmUmtsOptions to be available or not. The
131 default values are in Phone/res/values/config.xml and maybe overridden
132 in operator specific resource directories or device specific overlays. -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700133 <!-- DEPRECATED: Use CarrierConfigManager#KEY_APN_EXPAND_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700134 <bool name="config_apn_expand" translatable="false">true</bool>
Jonathan Basseri000846b2015-06-19 15:17:11 -0700135 <!-- DEPRECATED: Use CarrierConfigManager#KEY_OPERATOR_SELECTION_EXPAND_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700136 <bool name="config_operator_selection_expand" translatable="false">true</bool>
Jonathan Basseri000846b2015-06-19 15:17:11 -0700137 <!-- DEPRECATED: Use CarrierConfigManager#KEY_PREFER_2G_BOOL -->
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700138 <bool name="config_prefer_2g" translatable="false">true</bool>
Sungmin Choi21270372013-09-17 17:19:51 -0700139 <!-- Show enabled lte option for lte device -->
140 <bool name="config_enabled_lte" translatable="false">false</bool>
Sungmin Choi52a797f2015-07-27 13:52:47 -0700141 <!-- Show enabled tdscdma option for device -->
142 <bool name="config_support_tdscdma" translatable="false">false</bool>
Sungmin Choi6fc016e2015-09-24 15:12:53 -0700143 <!-- Show enabled tdscdma option for device when connect roaming network -->
144 <string-array name="config_support_tdscdma_roaming_on_networks" translatable="false">
145 </string-array>
Sungmin Choi21270372013-09-17 17:19:51 -0700146 <!-- Show cdma auto network mode in (glabal) roaming -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700147 <!-- DEPRECATED: Use CarrierConfigManager#KEY_SHOW_CDMA_CHOICES_BOOL -->
Sungmin Choi21270372013-09-17 17:19:51 -0700148 <bool name="config_show_cdma" translatable="false">false</bool>
Santos Cordonaf763a12013-08-19 20:04:58 -0700149
Yorke Leed3105fe2013-09-25 12:44:45 -0700150 <!-- Package name for the default in-call UI and dialer [DO NOT TRANSLATE] -->
151 <string name="ui_default_package" translatable="false">com.android.dialer</string>
Santos Cordonaf763a12013-08-19 20:04:58 -0700152
Yorke Leed3105fe2013-09-25 12:44:45 -0700153 <!-- Class name for the default main Dialer activity [DO NOT TRANSLATE] -->
154 <string name="dialer_default_class" translatable="false">com.android.dialer.DialtactsActivity</string>
Santos Cordon83570472013-09-06 15:45:10 -0700155
Wei Liube964582015-08-21 11:57:00 -0700156 <!-- Package name for the network operator settings [DO NOT TRANSLATE] -->
157 <string name="network_operator_settings_package" translatable="false">com.android.phone</string>
158 <!-- Class name for the network operator settings activity [DO NOT TRANSLATE] -->
159 <string name="network_operator_settings_class" translatable="false">com.android.phone.NetworkSetting</string>
160
Santos Cordonb2bfd3c2014-10-08 15:12:41 -0700161 <!-- CDMA activation goes through HFA -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700162 <!-- DEPRECATED: Use CarrierConfigManager#KEY_USE_HFA_FOR_PROVISIONING_BOOL -->
Santos Cordonb2bfd3c2014-10-08 15:12:41 -0700163 <bool name="config_use_hfa_for_provisioning">false</bool>
164
165 <!-- CDMA activation goes through OTASP.
166 TODO: This should be combined with config_use_hfa_for_provisioning and implemented
167 as an enum (NONE, HFA, OTASP). -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700168 <!-- DEPRECATED: Use CarrierConfigManager#KEY_USE_OTASP_FOR_PROVISIONING_BOOL -->
Santos Cordonb2bfd3c2014-10-08 15:12:41 -0700169 <bool name="config_use_otasp_for_provisioning">false</bool>
Sungmin Choif45d6912013-10-14 15:34:27 -0700170
171 <!-- Display carrier settings menu if true -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700172 <!-- DEPRECATED: Use CarrierConfigManager#KEY_CARRIER_SETTINGS_ENABLE_BOOL -->
Sungmin Choif45d6912013-10-14 15:34:27 -0700173 <bool name="config_carrier_settings_enable">false</bool>
174 <!-- carrier settings menu -->
175 <string name="carrier_settings" translatable="false"></string>
176 <string name="carrier_settings_menu" translatable="false"></string>
Ihab Awad098f2d72014-05-19 17:34:52 -0700177
Etan Cohen0ca1c802014-07-07 15:35:48 -0700178 <!-- Does not display additional call seting for IMS phone based on GSM Phone -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700179 <!-- DEPRECATED: Use CarrierConfigManager#KEY_ADDITIONAL_CALL_SETTING_BOOL -->
Etan Cohen0ca1c802014-07-07 15:35:48 -0700180 <bool name="config_additional_call_setting">true</bool>
Jing Zhao43e95622014-08-25 13:49:19 -0500181
182 <!-- Show APN Settings for some CDMA carriers -->
Jonathan Basseri000846b2015-06-19 15:17:11 -0700183 <!-- DEPRECATED: Use CarrierConfigManager#KEY_SHOW_APN_SETTING_CDMA_BOOL -->
Jing Zhao43e95622014-08-25 13:49:19 -0500184 <bool name="config_show_apn_setting_cdma">false</bool>
Santos Cordon06cc4482014-10-08 12:12:15 -0700185
186 <!-- Allows the telephony HFA logic to run even if we're not in setup wizard. -->
187 <bool name="config_allow_hfa_outside_of_setup_wizard">true</bool>
a200234a4974e2014-10-21 15:32:30 -0500188
189 <!-- After a CDMA conference call is merged, the swap button should be displayed. -->
190 <bool name="support_swap_after_merge" translatable="false">true</bool>
Nancy Chenb4a92702014-12-04 15:57:29 -0800191
192 <!-- Determine whether the voicemail notification is persistent in the notification bar.
193 If true, the voicemail notifications cannot be dismissed from the notification bar. -->
194 <bool name="voicemail_notification_persistent">false</bool>
Vinit Deshpandee15917e2015-04-14 18:08:46 -0700195
Andrew Lee5e318722015-04-21 17:43:36 -0700196 <!-- Disables dialing "*228" (OTASP provisioning) on CDMA carriers where it is not supported or
197 is potentially harmful by locking the SIM to 3G. -->
Andrew Lee02649222015-04-30 15:32:58 -0700198 <string name="config_disable_cdma_activation_code" translatable="false">false</string>
Wei Liu9eab0382015-07-29 21:03:09 -0700199
200 <!-- Flag indicating if SIM state should be checked before making an outgoing call. -->
201 <bool name="config_checkSimStateBeforeOutgoingCall">false</bool>
202 <!-- Package name for the SIM unlock dialog.[DO NOT TRANSLATE] -->
203 <string name="config_simUnlockUiPackage" translatable="false">@null</string>
204 <!-- Class name for the SIM unlock dialog.[DO NOT TRANSLATE] -->
205 <string name="config_simUnlockUiClass" translatable="false">@null</string>
Bryce Leeaa5a84b2015-08-10 08:51:12 -0700206
Bryce Lee5dc90842015-08-11 07:57:14 -0700207 <!-- Flag indicating whether to allow visual voicemail if available on the device.[DO NOT TRANSLATE] -->
Bryce Leeaa5a84b2015-08-10 08:51:12 -0700208 <bool name="allow_visual_voicemail">true</bool>
Bryce Lee5dc90842015-08-11 07:57:14 -0700209
Ta-wei Yeneb6ee5f2016-07-13 17:36:19 -0700210 <!-- Flag to enable VVM3 visual voicemail. VVM3 is used by Verizon Wireless. -->
211 <bool name="vvm3_enabled">false</bool>
212
Bryce Lee5dc90842015-08-11 07:57:14 -0700213 <!-- Component for custom voicemail notification handling. [DO NOT TRANSLATE] -->
214 <string name="config_customVoicemailComponent">@null</string>
Bryce Lee38c19ab2015-10-14 16:46:04 -0700215
216 <!-- Flag indicating whether to allow pstn phone accounts [DO NOT TRANSLATE] -->
217 <bool name="config_pstn_phone_accounts_enabled">true</bool>
Bryce Lee04bcb682015-10-21 22:25:56 -0700218
219 <!-- Flag indicating whether the the emergency phone account should be emergency calls only -->
220 <bool name="config_emergency_account_emergency_calls_only">false</bool>
Bryce Lee2c8b2582015-10-26 15:49:27 -0700221
222 <!-- Whether the emergency only account can make emergency calls -->
223 <bool name="config_pstnCanPlaceEmergencyCalls">true</bool>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700224</resources>