blob: 93320f78d7282d948d780183584b4d63d04363f0 [file] [log] [blame]
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
19 package="com.android.phone"
20 coreApp="true"
21 android:sharedUserId="android.uid.phone"
22 android:sharedUserLabel="@string/phoneAppLabel"
23>
24
25 <original-package android:name="com.android.phone" />
26
27 <protected-broadcast android:name="android.intent.action.SERVICE_STATE" />
28 <protected-broadcast android:name="android.intent.action.RADIO_TECHNOLOGY" />
29 <protected-broadcast android:name="android.intent.action.EMERGENCY_CALLBACK_MODE_CHANGED" />
30 <protected-broadcast android:name="android.intent.action.SIG_STR" />
31 <protected-broadcast android:name="android.intent.action.ANY_DATA_STATE" />
32 <protected-broadcast android:name="android.intent.action.DATA_CONNECTION_FAILED" />
33 <protected-broadcast android:name="android.intent.action.SIM_STATE_CHANGED" />
34 <protected-broadcast android:name="android.intent.action.NETWORK_SET_TIME" />
35 <protected-broadcast android:name="android.intent.action.NETWORK_SET_TIMEZONE" />
36 <protected-broadcast android:name="android.intent.action.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS" />
37 <protected-broadcast android:name="android.intent.action.ACTION_MDN_STATE_CHANGED" />
38 <protected-broadcast android:name="android.provider.Telephony.SPN_STRINGS_UPDATED" />
39 <protected-broadcast android:name="android.provider.Telephony.SIM_FULL" />
40 <protected-broadcast android:name="com.android.internal.telephony.data-restart-trysetup" />
41 <protected-broadcast android:name="com.android.internal.telephony.data-stall" />
42
Yorke Lee79840002013-09-16 14:30:56 -070043 <uses-permission android:name="android.permission.BIND_CALL_SERVICE" />
Santos Cordon7d4ddf62013-07-10 11:58:08 -070044 <uses-permission android:name="android.permission.BROADCAST_STICKY" />
45 <uses-permission android:name="android.permission.CALL_PHONE" />
46 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
47 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
48 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
49 <uses-permission android:name="android.permission.READ_CONTACTS" />
50 <uses-permission android:name="android.permission.READ_CALL_LOG" />
51 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
52 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
53 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
54 <uses-permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW" />
Santos Cordon7d4ddf62013-07-10 11:58:08 -070055 <uses-permission android:name="android.permission.VIBRATE" />
56 <uses-permission android:name="android.permission.BLUETOOTH" />
57 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
58 <uses-permission android:name="android.permission.REORDER_TASKS" />
59 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
60 <uses-permission android:name="android.permission.WAKE_LOCK" />
61 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
62 <uses-permission android:name="android.permission.STATUS_BAR" />
63 <uses-permission android:name="android.permission.READ_SMS" />
64 <uses-permission android:name="android.permission.WRITE_SMS" />
65 <uses-permission android:name="android.permission.SEND_SMS" />
66 <uses-permission android:name="android.permission.SEND_RESPOND_VIA_MESSAGE" />
Jake Hambyc0bc6a62014-02-24 15:48:40 -080067 <uses-permission android:name="android.permission.SET_TIME" />
Santos Cordon7d4ddf62013-07-10 11:58:08 -070068 <uses-permission android:name="android.permission.SET_TIME_ZONE" />
69 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
70 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
71 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
72 <uses-permission android:name="android.permission.DEVICE_POWER" />
73 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
74 <uses-permission android:name="android.permission.INTERNET" />
75 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
76 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
77 <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
78 <uses-permission android:name="android.permission.BROADCAST_SMS"/>
79 <uses-permission android:name="android.permission.BROADCAST_WAP_PUSH"/>
80 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
81 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
82 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
83 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
84 <uses-permission android:name="android.permission.SHUTDOWN" />
85 <uses-permission android:name="android.permission.RECORD_AUDIO" />
86 <uses-permission android:name="android.permission.PERFORM_CDMA_PROVISIONING" />
87 <uses-permission android:name="android.permission.USE_SIP" />
88 <uses-permission android:name="android.permission.REBOOT" />
89 <uses-permission android:name="android.permission.UPDATE_LOCK" />
90 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
Yorke Lee422c2f52013-09-05 11:04:51 -070091 <uses-permission android:name="com.android.smspush.WAPPUSH_MANAGER_BIND" />
Santos Cordon7d4ddf62013-07-10 11:58:08 -070092 <uses-permission android:name="android.permission.MANAGE_USERS" />
93 <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
94 <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" />
David Brauna1203d32013-11-12 13:40:28 -080095 <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" />
Santos Cordon7d4ddf62013-07-10 11:58:08 -070096
97 <!-- This tells the activity manager to not delay any of our activity
98 start requests, even if they happen immediately after the user
99 presses home. -->
100 <uses-permission android:name="android.permission.STOP_APP_SWITCHES" />
101
102 <application android:name="PhoneApp"
103 android:persistent="true"
104 android:label="@string/phoneAppLabel"
105 android:icon="@mipmap/ic_launcher_phone"
106 android:supportsRtl="true">
107 <provider android:name="IccProvider"
108 android:authorities="icc"
109 android:multiprocess="true"
110 android:exported="true"
111 android:readPermission="android.permission.READ_CONTACTS"
112 android:writePermission="android.permission.WRITE_CONTACTS" />
113
114 <!-- Dialer UI that only allows emergency calls -->
115 <activity android:name="EmergencyDialer"
116 android:label="@string/emergencyDialerIconLabel"
117 android:theme="@style/EmergencyDialerTheme"
118 android:screenOrientation="portrait">
119 <intent-filter>
120 <action android:name="com.android.phone.EmergencyDialer.DIAL" />
121 <category android:name="android.intent.category.DEFAULT" />
122 </intent-filter>
123 <intent-filter>
124 <action android:name="com.android.phone.EmergencyDialer.DIAL" />
125 <category android:name="android.intent.category.DEFAULT" />
126 <data android:scheme="tel" />
127 </intent-filter>
128 </activity>
129
130 <activity android:name="ADNList" />
131
132 <activity android:name="SimContacts"
133 android:label="@string/simContacts_title"
134 android:theme="@style/SimImportTheme"
135 android:screenOrientation="portrait"
136 android:icon="@mipmap/ic_launcher_contacts">
137
138 <intent-filter>
139 <action android:name="android.intent.action.VIEW" />
140 <category android:name="android.intent.category.DEFAULT" />
141 <data android:mimeType="vnd.android.cursor.item/sim-contact" />
142 </intent-filter>
143 </activity>
144
Yorke Lee1c881a02013-07-31 09:04:42 -0700145 <activity android:name="FdnList"
146 android:label="@string/fdnListLabel"
147 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700148 <intent-filter>
149 <action android:name="android.intent.action.VIEW" />
150 <category android:name="android.intent.category.DEFAULT" />
151 <data android:mimeType="vnd.android.cursor.item/sim-contact" />
152 </intent-filter>
153 </activity>
154
155 <activity android:name="OutgoingCallBroadcaster"
156 android:theme="@style/OutgoingCallBroadcasterTheme"
157 android:permission="android.permission.CALL_PHONE"
158 android:screenOrientation="nosensor"
Santos Cordone1c151b2013-08-27 18:55:25 -0700159 android:configChanges="orientation|screenSize|keyboardHidden"
160 android:excludeFromRecents="true">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700161 <!-- CALL action intent filters, for the various ways
162 of initiating an outgoing call. -->
163 <intent-filter>
164 <action android:name="android.intent.action.CALL" />
165 <category android:name="android.intent.category.DEFAULT" />
166 <data android:scheme="tel" />
167 </intent-filter>
168 <intent-filter android:icon="@drawable/ic_launcher_sip_call">
169 <action android:name="android.intent.action.CALL" />
170 <category android:name="android.intent.category.DEFAULT" />
171 <data android:scheme="sip" />
172 </intent-filter>
173 <intent-filter>
174 <action android:name="android.intent.action.CALL" />
175 <category android:name="android.intent.category.DEFAULT" />
176 <data android:scheme="voicemail" />
177 </intent-filter>
178 <intent-filter>
179 <action android:name="android.intent.action.CALL" />
180 <category android:name="android.intent.category.DEFAULT" />
181 <data android:mimeType="vnd.android.cursor.item/phone" />
182 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
183 <data android:mimeType="vnd.android.cursor.item/person" />
184 </intent-filter>
185 </activity>
186
187 <activity-alias android:name="EmergencyOutgoingCallBroadcaster"
188 android:targetActivity="OutgoingCallBroadcaster"
189 android:permission="android.permission.CALL_PRIVILEGED">
190 <intent-filter android:priority="1000">
191 <action android:name="android.intent.action.CALL_EMERGENCY" />
192 <category android:name="android.intent.category.DEFAULT" />
193 <data android:scheme="tel" />
194 </intent-filter>
195 <intent-filter android:icon="@drawable/ic_launcher_sip_call"
196 android:priority="1000">
197 <action android:name="android.intent.action.CALL_EMERGENCY" />
198 <category android:name="android.intent.category.DEFAULT" />
199 <data android:scheme="sip" />
200 </intent-filter>
201 <intent-filter android:priority="1000">
202 <action android:name="android.intent.action.CALL_EMERGENCY" />
203 <category android:name="android.intent.category.DEFAULT" />
204 <data android:scheme="voicemail" />
205 </intent-filter>
206 <intent-filter android:priority="1000">
207 <action android:name="android.intent.action.CALL_EMERGENCY" />
208 <category android:name="android.intent.category.DEFAULT" />
209 <data android:mimeType="vnd.android.cursor.item/phone" />
210 <data android:mimeType="vnd.android.cursor.item/person" />
211 </intent-filter>
212 </activity-alias>
213
214 <activity-alias android:name="PrivilegedOutgoingCallBroadcaster"
215 android:targetActivity="OutgoingCallBroadcaster"
216 android:screenOrientation="nosensor"
217 android:permission="android.permission.CALL_PRIVILEGED">
218 <intent-filter android:priority="1000">
219 <action android:name="android.intent.action.CALL_PRIVILEGED" />
220 <category android:name="android.intent.category.DEFAULT" />
221 <data android:scheme="tel" />
222 </intent-filter>
223 <intent-filter android:icon="@drawable/ic_launcher_sip_call"
224 android:priority="1000">
225 <action android:name="android.intent.action.CALL_PRIVILEGED" />
226 <category android:name="android.intent.category.DEFAULT" />
227 <data android:scheme="sip" />
228 </intent-filter>
229 <intent-filter android:priority="1000">
230 <action android:name="android.intent.action.CALL_PRIVILEGED" />
231 <category android:name="android.intent.category.DEFAULT" />
232 <data android:scheme="voicemail" />
233 </intent-filter>
234 <intent-filter android:priority="1000">
235 <action android:name="android.intent.action.CALL_PRIVILEGED" />
236 <category android:name="android.intent.category.DEFAULT" />
237 <data android:mimeType="vnd.android.cursor.item/phone" />
238 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
239 <data android:mimeType="vnd.android.cursor.item/person" />
240 </intent-filter>
241 </activity-alias>
242
243 <receiver android:name="ProcessOutgoingCallTest" android:exported="false"
244 android:enabled="false">
245 <intent-filter android:priority="1">
246 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
247 <category android:name="android.intent.category.DEFAULT" />
248 </intent-filter>
249 </receiver>
250
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700251 <!-- Trampoline activity that handles the PERFORM_CDMA_PROVISIONING intent. -->
252 <activity android:name="InCallScreenShowActivation"
253 android:permission="android.permission.PERFORM_CDMA_PROVISIONING"
254 android:label="@string/phoneIconLabel"
255 android:theme="@android:style/Theme.NoDisplay"
256 android:excludeFromRecents="true">
257 <intent-filter>
258 <action android:name="com.android.phone.PERFORM_CDMA_PROVISIONING" />
259 <category android:name="android.intent.category.DEFAULT" />
260 </intent-filter>
261 </activity>
262
263 <!-- "Mobile network settings" screen, used on both
264 non-voice-capable tablets and regular phone devices. -->
265 <activity android:name="MobileNetworkSettings"
266 android:label="@string/settings_label"
267 android:theme="@style/Theme.Settings">
268 <intent-filter>
269 <action android:name="android.intent.action.VIEW" />
270 <action android:name="android.intent.action.MAIN" />
271 <action android:name="android.settings.DATA_ROAMING_SETTINGS" />
272 <category android:name="android.intent.category.DEFAULT" />
273 </intent-filter>
274 </activity>
275
276 <activity-alias android:name="Settings"
277 android:targetActivity="MobileNetworkSettings" />
278
279 <!-- networks setting -->
280 <!-- service to handle network query requests sent to RIL -->
281 <service android:name="NetworkQueryService" />
282
283 <!-- clearing of missed call notifications -->
284 <service android:name="ClearMissedCallsService" />
285
286 <activity android:name="NetworkSetting"
287 android:label="@string/networks"
288 android:configChanges="orientation|screenSize|keyboardHidden"
289 android:theme="@android:style/Theme.Holo.DialogWhenLarge">
290 <intent-filter>
291 <action android:name="android.intent.action.MAIN" />
292 <action android:name="android.settings.NETWORK_OPERATOR_SETTINGS" />
293 <category android:name="android.intent.category.DEFAULT" />
294 </intent-filter>
295 </activity>
296
297 <activity android:name="GsmUmtsOptions"
298 android:label="@string/gsm_umts_options"
Yorke Lee1c881a02013-07-31 09:04:42 -0700299 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700300 <intent-filter>
301 <action android:name="android.intent.action.MAIN" />
302 </intent-filter>
303 </activity>
304
305 <activity android:name="CdmaOptions"
306 android:label="@string/cdma_options"
Yorke Lee1c881a02013-07-31 09:04:42 -0700307 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700308 <intent-filter>
309 <action android:name="android.intent.action.MAIN" />
310 </intent-filter>
311 </activity>
312
313 <activity android:name="GsmUmtsCallOptions"
314 android:label="@string/gsm_umts_options"
Yorke Lee1c881a02013-07-31 09:04:42 -0700315 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700316 <intent-filter>
317 <action android:name="android.intent.action.MAIN" />
318 </intent-filter>
319 </activity>
320
321 <activity android:name="CdmaCallOptions"
322 android:label="@string/cdma_options"
Yorke Lee1c881a02013-07-31 09:04:42 -0700323 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700324 <intent-filter>
325 <action android:name="android.intent.action.MAIN" />
326 </intent-filter>
327 </activity>
328
329 <activity android:name="GsmUmtsCallForwardOptions"
330 android:label="@string/labelCF"
331 android:configChanges="orientation|screenSize|keyboardHidden"
Yorke Lee1c881a02013-07-31 09:04:42 -0700332 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700333 <intent-filter>
334 <action android:name="android.intent.action.MAIN" />
335 </intent-filter>
336 </activity>
337
338 <activity android:name="GsmUmtsAdditionalCallOptions"
339 android:label="@string/labelGSMMore"
340 android:configChanges="orientation|screenSize|keyboardHidden"
Yorke Lee1c881a02013-07-31 09:04:42 -0700341 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700342 <intent-filter>
343 <action android:name="android.intent.action.MAIN" />
344 </intent-filter>
345 </activity>
346
347 <activity android:name="CellBroadcastSms"
348 android:label="@string/cell_broadcast_sms"
349 android:theme="@android:style/Theme.Holo.DialogWhenLarge">
350 <intent-filter>
351 <action android:name="android.intent.action.MAIN" />
352 </intent-filter>
353 </activity>
354
355 <!-- fdn setting -->
356 <activity android:name="FdnSetting"
357 android:label="@string/fdn"
Yorke Lee1c881a02013-07-31 09:04:42 -0700358 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700359 <intent-filter>
360 <action android:name="android.intent.action.MAIN" />
361 </intent-filter>
362 </activity>
363
364 <activity android:name="EnableFdnScreen"
365 android:label=""
Yorke Lee1c881a02013-07-31 09:04:42 -0700366 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700367 </activity>
368
369 <!-- SIM PIN setting -->
370 <activity android:name="EnableIccPinScreen"
371 android:label="@string/enable_pin"
Yorke Lee1c881a02013-07-31 09:04:42 -0700372 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700373 <intent-filter>
374 <action android:name="android.intent.action.MAIN" />
375 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
376 </intent-filter>
377 </activity>
378
379 <activity android:name="ChangeIccPinScreen"
380 android:label="@string/change_pin"
Yorke Lee1c881a02013-07-31 09:04:42 -0700381 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700382 <intent-filter>
383 <action android:name="android.intent.action.MAIN" />
384 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
385 </intent-filter>
386 </activity>
387
388 <activity android:name="GetPin2Screen"
389 android:label="@string/get_pin2"
Yorke Lee1c881a02013-07-31 09:04:42 -0700390 android:theme="@style/SettingsLight"
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700391 android:windowSoftInputMode="stateVisible">
392 </activity>
393
394 <activity android:name="EditFdnContactScreen"
Yorke Lee1c881a02013-07-31 09:04:42 -0700395 android:theme="@style/SettingsLight"
396 android:windowSoftInputMode="stateVisible">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700397 </activity>
398
399 <activity android:name="DeleteFdnContactScreen"
Yorke Lee1c881a02013-07-31 09:04:42 -0700400 android:theme="@style/SettingsLight"
401 android:label="@string/delete_fdn_contact">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700402 </activity>
403
404 <activity android:name="DataRoamingReenable" android:label="@string/android:dialog_alert_title"
405 android:theme="@android:style/Theme.Holo.Dialog">
406 <intent-filter>
407 <action android:name="android.intent.action.MAIN" />
408 </intent-filter>
409 </activity>
410
411 <!-- data roaming setting -->
412 <activity android:name="RoamingSetting"
413 android:label="@string/roaming"
414 android:theme="@android:style/Theme.Holo.DialogWhenLarge">
415 <intent-filter>
416 <action android:name="android.intent.action.MAIN" />
417 </intent-filter>
418 </activity>
419
420 <!-- "Call settings" UI, used only on voice-capable phone devices. -->
421 <activity android:name="CallFeaturesSetting"
422 android:label="@string/call_settings"
423 android:configChanges="orientation|screenSize|keyboardHidden"
Yorke Lee1c881a02013-07-31 09:04:42 -0700424 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700425 <intent-filter>
426 <action android:name="android.intent.action.VIEW" />
427 <action android:name="android.intent.action.MAIN" />
428 <action android:name="com.android.phone.CallFeaturesSetting.ADD_VOICEMAIL" />
429 <category android:name="android.intent.category.DEFAULT" />
430 </intent-filter>
431 </activity>
432
433 <!-- bluetooth phone service -->
434 <service android:name="BluetoothPhoneService">
435 <intent-filter>
436 <action android:name="android.bluetooth.IBluetoothHeadsetPhone" />
437 </intent-filter>
438 </service>
439
440 <!-- Broadcast Receiver that will process BOOT Complete and launch OTA -->
441 <receiver android:name="OtaStartupReceiver" android:exported="false"
442 androidprv:primaryUserOnly="true">
443 <intent-filter android:priority="100">
444 <action android:name="android.intent.action.BOOT_COMPLETED"/>
445 </intent-filter>
446 </receiver>
447
448 <!-- CDMA Emergency Callback Mode -->
449 <service android:name="EmergencyCallbackModeService">
450 </service>
451
452 <!-- service to dump telephony information -->
453 <service android:name="TelephonyDebugService" />
454
455 <activity android:name="EmergencyCallbackModeExitDialog"
456 android:excludeFromRecents="true"
457 android:label="@string/ecm_exit_dialog"
458 android:launchMode="singleTop"
459 android:theme="@android:style/Theme.Translucent.NoTitleBar">
460 <intent-filter>
461 <action android:name="com.android.phone.action.ACTION_SHOW_ECM_EXIT_DIALOG" />
462 <action android:name="android.intent.action.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS" />
463 <category android:name="android.intent.category.DEFAULT" />
464 </intent-filter>
465 </activity>
466
467 <receiver android:name="SipBroadcastReceiver">
468 <intent-filter>
469 <action android:name="com.android.phone.SIP_INCOMING_CALL" />
470 <action android:name="com.android.phone.SIP_ADD_PHONE" />
471 <action android:name="com.android.phone.SIP_REMOVE_PHONE" />
472 <action android:name="android.net.sip.SIP_SERVICE_UP" />
473 </intent-filter>
474 </receiver>
475
476 <activity android:label="Sip Settings"
477 android:name=".sip.SipSettings"
Yorke Lee1c881a02013-07-31 09:04:42 -0700478 android:theme="@style/SettingsLight"
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700479 android:launchMode="singleTop"
480 android:configChanges="orientation|screenSize|keyboardHidden"
481 android:uiOptions="splitActionBarWhenNarrow">
482 <intent-filter>
483 <action android:name="android.intent.action.MAIN" />
484 <action android:name="android.net.sip.NOTIFY" />
485 </intent-filter>
486 </activity>
487 <activity android:name=".sip.SipEditor"
Yorke Lee1c881a02013-07-31 09:04:42 -0700488 android:theme="@style/SettingsLight"
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700489 android:configChanges="orientation|screenSize|keyboardHidden"
490 android:uiOptions="splitActionBarWhenNarrow">
491 </activity>
492 <activity android:name=".SipCallOptionHandler"
493 android:theme="@style/SipCallOptionHandlerTheme"
494 android:screenOrientation="nosensor"
Santos Cordon7c0ee2e2013-10-17 12:20:30 -0700495 android:configChanges="orientation|screenSize|keyboardHidden"
496 android:excludeFromRecents="true">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700497 </activity>
498
499 <activity android:name="RespondViaSmsManager$Settings"
500 android:label="@string/respond_via_sms_setting_title"
501 android:configChanges="orientation|screenSize|keyboardHidden"
Yorke Lee1c881a02013-07-31 09:04:42 -0700502 android:theme="@style/SettingsLight">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700503 <intent-filter>
504 <action android:name="android.intent.action.MAIN" />
505 </intent-filter>
506 </activity>
507
Yorke Lee71028d02013-08-28 12:24:01 -0700508 <activity android:name="ErrorDialogActivity"
509 android:configChanges="orientation|screenSize|keyboardHidden"
510 android:excludeFromRecents="true"
511 android:launchMode="singleInstance"
512 android:theme="@style/Empty">
513 </activity>
Yorke Lee598dac52013-11-01 11:30:55 -0700514
515 <activity android:name="MMIDialogActivity"
516 android:configChanges="orientation|screenSize|keyboardHidden"
517 android:excludeFromRecents="true"
518 android:launchMode="singleInstance"
519 android:theme="@style/Empty">
520 </activity>
521
Christine Chen0ce0e852013-08-09 18:26:31 -0700522 <activity android:name=".TextMessagePackageChooser"
523 android:label="@string/respond_via_sms_setting_title"
524 android:configChanges="orientation|screenSize|keyboardHidden"
525 android:theme="@style/Theme.Transparent">
526 </activity>
Yorke Lee71028d02013-08-28 12:24:01 -0700527
Santos Cordon83570472013-09-06 15:45:10 -0700528 <activity android:name="HfaActivity"
Santos Cordon00d7a432013-09-17 14:07:14 -0700529 android:configChanges="orientation|screenSize|keyboardHidden"
Santos Cordon83570472013-09-06 15:45:10 -0700530 android:launchMode="singleInstance"
Santos Cordon00d7a432013-09-17 14:07:14 -0700531 android:theme="@style/Empty"
532 android:exported="false">
Santos Cordon83570472013-09-06 15:45:10 -0700533 </activity>
534
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700535 <receiver android:name="CallerInfoCacheUpdateReceiver">
536 <intent-filter>
537 <action android:name="com.android.phone.UPDATE_CALLER_INFO_CACHE" />
538 </intent-filter>
539 </receiver>
540
541 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
Santos Cordon0c88ac22014-01-22 11:40:52 -0800542 <receiver android:name="PhoneGlobals$NotificationBroadcastReceiver" android:exported="false">
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700543 <intent-filter>
544 <action android:name="com.android.phone.ACTION_HANG_UP_ONGOING_CALL" />
545 <action android:name="com.android.phone.ACTION_CALL_BACK_FROM_NOTIFICATION" />
546 <action android:name="com.android.phone.ACTION_SEND_SMS_FROM_NOTIFICATION" />
547 </intent-filter>
548 </receiver>
549
Santos Cordon00d7a432013-09-17 14:07:14 -0700550 <!-- service to dump telephony information -->
551 <service android:name="HfaService" android:exported="false"/>
552
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700553 </application>
554</manifest>