blob: 9b3602e43c436530f2cad97c755660b55dd7b0b7 [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
17<!-- Phone app resources that may need to be customized
18 for different hardware or product builds. -->
19<resources>
20 <!-- Flag indicating whether the Phone app should ignore
21 EVENT_SIM_NETWORK_LOCKED events from the Sim. If true, this will
22 prevent the IccNetworkDepersonalizationPanel from being shown,
23 and effectively disable the "Sim network lock" feature. -->
24 <bool name="ignore_sim_network_locked_events">false</bool>
25
26 <!-- Flag indicating whether the Phone app should provide
27 a "Dismiss" button on the SIM network unlock screen.
28 The default value is true.
29 If set to false, there will be *no way* to dismiss the SIM
30 network unlock screen if you don't enter the correct unlock code.
31 (One important consequence: there will be no way to make an
32 Emergency Call if your SIM is network-locked and you don't know
33 the PIN.) -->
34 <bool name="sim_network_unlock_allow_dismiss">true</bool>
35
36 <!-- OTA configuration values, used when provisioning CDMA devices.
37 Following defaults values of zero means OTA UI is completely disabled.
38 These OTA UI can be enabled by setting config value to one in the product
39 specific overlay file -->
40
41 <!-- Determine whether we want to display the OTA activation screen, which
42 gives the user option to activate or cancel -->
43 <integer name="OtaShowActivationScreen">1</integer>
44 <!-- Determine whether we should show the "listen for instructions" screen after
45 successfully placing the OTA call -->
46 <integer name="OtaShowListeningScreen">0</integer>
47 <!-- The number of times we should show the activation screen/allow the provisioning
48 to fail before just showing an unsuccessful dialog -->
49 <integer name="OtaShowActivateFailTimes">0</integer>
50 <!-- Determine whether or not we should play the success/failure tone -->
51 <integer name="OtaPlaySuccessFailureTone">0</integer>
52
53 <!-- Flag indicating if the phone is a world phone -->
54 <bool name="world_phone">false</bool>
55
56 <!-- If true, enable vibration (haptic feedback) for key presses
57 in the EmergencyDialer activity. The pattern is set on a
58 per-platform basis using config_virtualKeyVibePattern. To be
59 consistent with the regular Dialer, this value should agree
60 with the corresponding values from config.xml under
61 apps/Contacts. -->
62 <bool name="config_enable_dialer_key_vibration">true</bool>
63
64 <!-- Flag indicating if the tty is enabled -->
65 <bool name="tty_enabled">false</bool>
66
67 <!-- Flag indicating if hac is enabled -->
68 <bool name="hac_enabled">false</bool>
69
70 <!-- Flag indicating if dtmf tone type is enabled -->
71 <bool name="dtmf_type_enabled">false</bool>
72
73 <!-- Flag indicating if auto retry is enabled -->
74 <bool name="auto_retry_enabled">false</bool>
75
76 <!-- Determine whether we want to play local DTMF tones in a call, or
77 just let the radio/BP handle playing of the tones. -->
78 <bool name="allow_local_dtmf_tones">true</bool>
79
80 <!-- If true, show an onscreen "Dial" button in the dialer.
81 In practice this is used on all platforms, even the ones with hard SEND/END
82 keys, but for maximum flexibility it's controlled by a flag here
83 (which can be overridden on a per-product basis.) -->
84 <bool name="config_show_onscreen_dial_button">true</bool>
85
86 <!-- Determine whether calls to mute the microphone in PhoneUtils
87 are routed through the android.media.AudioManager class (true) or through
88 the com.android.internal.telephony.Phone interface (false). -->
89 <bool name="send_mic_mute_to_AudioManager">false</bool>
90
91 <!-- Determines if device implements a noise suppression device for in call audio-->
92 <bool name="has_in_call_noise_suppression">false</bool>
93
94 <!-- Determines if the current device should allow emergency numbers
95 to be logged in the Call Log.
96 (Some carriers require that emergency calls *not* be logged,
97 presumably to avoid the risk of accidental redialing from the
98 call log UI. This is a good idea, so the default here is false.)
99
100 TODO: on the other hand, it might still be useful to have some
101 record of the emergency calls you've made, or to be able to look
102 up the exact date/time of an emergency call. So perhaps we
103 *should* log those calls, but instead fix the call log to disable
104 the "call" button for emergency numbers. -->
105 <bool name="allow_emergency_numbers_in_call_log">false</bool>
106
107 <!-- If this is true, the SIM card (through Customer Service Profile EF file) will be
108 able to prevent manual operator selection. If false, this SIM setting will be
109 ignored and manual operator selection will always be available. See
110 CPHS4_2.WW6, CPHS B.4.7.1 for more information -->
111 <bool name="csp_enabled">false</bool>
112
113 <!-- If true, removes the Voice Privacy option from Call Settings -->
114 <bool name="config_voice_privacy_disable">false</bool>
115
116 <!-- Configure certain GsmUmtsOptions to be available or not. The
117 default values are in Phone/res/values/config.xml and maybe overridden
118 in operator specific resource directories or device specific overlays. -->
119 <bool name="config_apn_expand" translatable="false">true</bool>
120 <bool name="config_operator_selection_expand" translatable="false">true</bool>
121 <bool name="config_prefer_2g" translatable="false">true</bool>
122</resources>