blob: 7ace0e0d2b928a07268a54f6b951e73b795e1e53 [file] [log] [blame]
Ben Gilad4937ff92013-12-12 12:05:37 -08001<?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"
Tyler Gunn7cc70b42014-09-12 22:17:27 -070019 package="com.android.server.telecom"
Santos Cordonb64c1502014-05-21 21:21:49 -070020 coreApp="true"
Santos Cordone6a33f22014-12-02 13:19:00 -080021 android:sharedUserId="android.uid.system">
Santos Cordon3e3b5412013-12-16 17:33:45 -080022
Bryce Lee41045b42015-08-05 13:10:39 -070023 <protected-broadcast android:name="android.intent.action.SHOW_MISSED_CALLS_NOTIFICATION" />
24
Ben Gilad4937ff92013-12-12 12:05:37 -080025 <!-- Prevents the activity manager from delaying any activity-start
26 requests by this package, including requests immediately after
27 the user presses "home". -->
Santos Cordonea5cb932015-05-07 16:28:38 -070028 <uses-permission android:name="android.permission.BIND_CONNECTION_SERVICE" />
29 <uses-permission android:name="android.permission.BIND_INCALL_SERVICE" />
Santos Cordonc7e85d42014-05-22 02:51:48 -070030 <uses-permission android:name="android.permission.BLUETOOTH" />
31 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
Santos Cordonea5cb932015-05-07 16:28:38 -070032 <uses-permission android:name="android.permission.BROADCAST_CALLLOG_INFO" />
33 <uses-permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION" />
Evan Charlton51bd35b2014-04-07 17:58:14 -070034 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
Santos Cordone6a33f22014-12-02 13:19:00 -080035 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Santos Cordonc7e85d42014-05-22 02:51:48 -070036 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
Santos Cordonea5cb932015-05-07 16:28:38 -070037 <uses-permission android:name="android.permission.MANAGE_USERS" />
Evan Charlton198fde82014-04-07 10:53:11 -070038 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
Santos Cordonea5cb932015-05-07 16:28:38 -070039 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
Santos Cordonc7e85d42014-05-22 02:51:48 -070040 <uses-permission android:name="android.permission.READ_CALL_LOG" />
41 <uses-permission android:name="android.permission.STOP_APP_SWITCHES" />
Evan Charlton198fde82014-04-07 10:53:11 -070042 <uses-permission android:name="android.permission.VIBRATE" />
Santos Cordonc7e85d42014-05-22 02:51:48 -070043 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
Abhijith Shastryfe7ecfe2016-02-08 22:19:58 -080044 <uses-permission android:name="android.permission.READ_BLOCKED_NUMBERS" />
45 <uses-permission android:name="android.permission.WRITE_BLOCKED_NUMBERS" />
Tyler Gunnd1607682014-08-15 11:29:12 -070046
Santos Cordon0ceb5a12014-10-23 09:30:19 -070047 <permission
Yong Jiang271b9ae2014-10-09 12:08:54 -050048 android:name="android.permission.BROADCAST_CALLLOG_INFO"
49 android:label="Broadcast the call type/duration information"
50 android:protectionLevel="signature|system"/>
51
52 <permission
53 android:name="android.permission.PROCESS_CALLLOG_INFO"
54 android:label="Register to handle the broadcasted call type/duration information"
55 android:protectionLevel="signature|system"/>
56
Santos Cordon4c778492015-02-27 15:13:35 -080057 <permission
58 android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"
59 android:label="Broadcast phone account registration"
60 android:protectionLevel="signature|system"/>
61
62 <permission
63 android:name="android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION"
64 android:label="Process phone account registration"
65 android:protectionLevel="signature|system"/>
66
Santos Cordon581ec4a2014-12-15 09:59:26 -080067 <application android:label="@string/telecommAppLabel"
Ben Gilad4937ff92013-12-12 12:05:37 -080068 android:icon="@mipmap/ic_launcher_phone"
Jay Shraunerd5a71da2014-07-30 09:33:59 -070069 android:allowBackup="false"
Santos Cordon581ec4a2014-12-15 09:59:26 -080070 android:supportsRtl="true"
Alex Klyubinebe2fb32015-05-20 11:30:05 -070071 android:process="system"
Jeff Sharkeybbebba32015-11-18 15:36:11 -070072 android:usesCleartextTraffic="false"
Jeff Sharkeya0a76f92016-03-17 11:00:41 -060073 android:defaultToDeviceProtectedStorage="true"
74 android:directBootAware="true">
Santos Cordon10e68322013-12-12 16:06:56 -080075
76 <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY
77 We have three different intents through which a call can be initiated each with its
78 own behavior.
79 1) CALL - Expected from any third party app with CALL_PHONE permission. Through this
80 intent, an app can call any number except emergency numbers.
81 2) CALL_PRIVILEGED - Expected from the dialer app and requires CALL_PRIVILEGED
82 permission, which is only held by the system dialer and the emergency dialer at the
83 time of this writing. Through this intent, an app can call any number including
84 emergency numbers.
85 3) CALL_EMERGENCY - Expected from the emergency dialer app and requires CALL_PRIVILEGED
86 permission. Through this intent, an app can call *only* emergency numbers. -->
87
Mohamedc9261852016-02-05 14:10:17 -080088 <!-- Activity that displays UI for managing blocked numbers. -->
89 <activity android:name=".settings.BlockedNumbersActivity"
90 android:label="@string/blocked_numbers"
91 android:configChanges="orientation|screenSize|keyboardHidden"
92 android:theme="@style/Theme.Telecom.BlockedNumbers"
93 android:process=":ui"
Abhijith Shastryb1308ec2016-02-29 16:26:09 -080094 android:exported="true">
95 <intent-filter>
96 <action android:name="android.telecom.action.MANAGE_BLOCKED_NUMBERS" />
97 <category android:name="android.intent.category.DEFAULT" />
98 </intent-filter>
99 </activity>
Santos Cordon10e68322013-12-12 16:06:56 -0800100 <!-- Activity that starts the outgoing call process by listening to CALL intent which
101 contain contact information in the intent's data. CallActivity handles any data
102 URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to
103 contacts provider entries. Any data not fitting the schema described is ignored. -->
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800104 <activity android:name=".components.UserCallActivity"
Jay Shrauner4d0b4192015-08-11 10:46:08 -0700105 android:label="@string/userCallActivityLabel"
Yorke Leed7255872014-08-25 15:03:51 -0700106 android:theme="@style/Theme.Telecomm.Transparent"
Santos Cordon10e68322013-12-12 16:06:56 -0800107 android:permission="android.permission.CALL_PHONE"
Santos Cordone6a33f22014-12-02 13:19:00 -0800108 android:excludeFromRecents="true"
109 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800110 <!-- CALL action intent filters for the various ways of initiating an outgoing call. -->
111 <intent-filter>
112 <action android:name="android.intent.action.CALL" />
113 <category android:name="android.intent.category.DEFAULT" />
114 <data android:scheme="tel" />
115 </intent-filter>
116 <!-- Specify an icon for SIP calls so that quick contacts widget shows a special SIP
117 icon for calls to SIP addresses. -->
118 <intent-filter android:icon="@drawable/ic_launcher_sip_call">
119 <action android:name="android.intent.action.CALL" />
120 <category android:name="android.intent.category.DEFAULT" />
121 <data android:scheme="sip" />
122 </intent-filter>
123 <intent-filter>
124 <action android:name="android.intent.action.CALL" />
125 <category android:name="android.intent.category.DEFAULT" />
126 <data android:scheme="voicemail" />
127 </intent-filter>
128 <!-- Omit default category below so that all Intents sent to this filter must be
129 explicit. -->
130 <intent-filter>
131 <action android:name="android.intent.action.CALL" />
132 <data android:mimeType="vnd.android.cursor.item/phone" />
133 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
134 <data android:mimeType="vnd.android.cursor.item/person" />
135 </intent-filter>
136 </activity>
137
138 <!-- Works like CallActivity with CALL_PRIVILEGED instead of CALL intent.
139 CALL_PRIVILEGED allows calls to emergency numbers unlike CALL which disallows it.
140 Intent-sender must have the CALL_PRIVILEGED permission or the broadcast will not be
141 processed. High priority of 1000 is used in all intent filters to prevent anything but
142 the system from processing this intent (b/8871505). -->
143 <activity-alias android:name="PrivilegedCallActivity"
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800144 android:targetActivity=".components.UserCallActivity"
Santos Cordone6a33f22014-12-02 13:19:00 -0800145 android:permission="android.permission.CALL_PRIVILEGED"
146 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800147 <intent-filter android:priority="1000">
148 <action android:name="android.intent.action.CALL_PRIVILEGED" />
149 <category android:name="android.intent.category.DEFAULT" />
150 <data android:scheme="tel" />
151 </intent-filter>
152 <intent-filter android:priority="1000"
153 android:icon="@drawable/ic_launcher_sip_call">
154 <action android:name="android.intent.action.CALL_PRIVILEGED" />
155 <category android:name="android.intent.category.DEFAULT" />
156 <data android:scheme="sip" />
157 </intent-filter>
158 <intent-filter android:priority="1000">
159 <action android:name="android.intent.action.CALL_PRIVILEGED" />
160 <category android:name="android.intent.category.DEFAULT" />
161 <data android:scheme="voicemail" />
162 </intent-filter>
163 <intent-filter android:priority="1000">
164 <action android:name="android.intent.action.CALL_PRIVILEGED" />
165 <data android:mimeType="vnd.android.cursor.item/phone" />
166 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
167 <data android:mimeType="vnd.android.cursor.item/person" />
168 </intent-filter>
169 </activity-alias>
170
171 <!-- Works like CallActivity with CALL_EMERGENCY instead of CALL intent.
172 CALL_EMERGENCY allows calls *only* to emergency numbers. Intent-sender must have the
173 CALL_PRIVILEGED permission or the broadcast will not be processed. High priority of
174 1000 is used in all intent filters to prevent anything but the system from processing
175 this intent (b/8871505). -->
Santos Cordondf399862014-08-06 04:39:15 -0700176 <!-- TODO: Is there really a notion of an emergency SIP number? If not, can
Santos Cordon10e68322013-12-12 16:06:56 -0800177 that scheme be removed from this activity? -->
178 <activity-alias android:name="EmergencyCallActivity"
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800179 android:targetActivity=".components.UserCallActivity"
Santos Cordone6a33f22014-12-02 13:19:00 -0800180 android:permission="android.permission.CALL_PRIVILEGED"
181 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800182 <intent-filter android:priority="1000">
183 <action android:name="android.intent.action.CALL_EMERGENCY" />
184 <category android:name="android.intent.category.DEFAULT" />
185 <data android:scheme="tel" />
186 </intent-filter>
187 <intent-filter android:priority="1000"
188 android:icon="@drawable/ic_launcher_sip_call">
189 <action android:name="android.intent.action.CALL_EMERGENCY" />
190 <category android:name="android.intent.category.DEFAULT" />
191 <data android:scheme="sip" />
192 </intent-filter>
193 <intent-filter android:priority="1000">
194 <action android:name="android.intent.action.CALL_EMERGENCY" />
195 <category android:name="android.intent.category.DEFAULT" />
196 <data android:scheme="voicemail" />
197 </intent-filter>
198 <intent-filter android:priority="1000">
199 <action android:name="android.intent.action.CALL_EMERGENCY" />
200 <data android:mimeType="vnd.android.cursor.item/phone" />
201 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
202 <data android:mimeType="vnd.android.cursor.item/person" />
203 </intent-filter>
204 </activity-alias>
205
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800206 <receiver android:name=".components.TelecomBroadcastReceiver" android:exported="false"
Santos Cordone6a33f22014-12-02 13:19:00 -0800207 android:process="system">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700208 <intent-filter>
Yorke Lee57f61492015-03-27 14:00:13 -0700209 <action android:name="com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS" />
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700210 <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION" />
211 <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION" />
212 </intent-filter>
213 </receiver>
214
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800215 <receiver android:name=".components.PhoneAccountBroadcastReceiver"
Santos Cordone6a33f22014-12-02 13:19:00 -0800216 android:process="system">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700217 <intent-filter>
218 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
219 <data android:scheme="package" />
220 </intent-filter>
221 </receiver>
Tyler Gunnd900ce62014-08-13 11:40:59 -0700222
Andrew Leeaf22dd12015-02-25 17:40:11 -0800223 <activity android:name=".RespondViaSmsSettings"
Ihab Awadff7493a2014-06-10 13:47:44 -0700224 android:label="@string/respond_via_sms_setting_title"
Andrew Leefd053f42014-11-12 18:09:58 -0800225 android:configChanges="orientation|screenSize|keyboardHidden"
Santos Cordone6a33f22014-12-02 13:19:00 -0800226 android:theme="@style/Theme.Telecom.DialerSettings"
227 android:process=":ui">
Ihab Awadff7493a2014-06-10 13:47:44 -0700228 <intent-filter>
229 <action android:name="android.intent.action.MAIN" />
Andrew Lee9631da42015-02-18 17:58:58 -0800230 <action android:name="android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS" />
231 <category android:name="android.intent.category.DEFAULT" />
Ihab Awadff7493a2014-06-10 13:47:44 -0700232 </intent-filter>
233 </activity>
Ihab Awad104f8062014-07-17 11:29:35 -0700234
Santos Cordon55344342015-05-04 13:05:30 -0700235 <activity android:name=".settings.EnableAccountPreferenceActivity"
236 android:label="@string/enable_account_preference_title"
237 android:configChanges="orientation|screenSize|keyboardHidden"
238 android:theme="@style/Theme.Telecom.DialerSettings"
239 android:process=":ui">
240 <intent-filter>
241 <action android:name="android.intent.action.MAIN" />
242 <category android:name="android.intent.category.DEFAULT" />
243 </intent-filter>
244 </activity>
245
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800246 <activity android:name=".components.ErrorDialogActivity"
Yorke Leed7255872014-08-25 15:03:51 -0700247 android:configChanges="orientation|screenSize|keyboardHidden"
248 android:excludeFromRecents="true"
249 android:launchMode="singleInstance"
Santos Cordone6a33f22014-12-02 13:19:00 -0800250 android:theme="@style/Theme.Telecomm.Transparent"
251 android:process=":ui">
Yorke Leed7255872014-08-25 15:03:51 -0700252 </activity>
253
Yorke Leeb5c5d442015-04-27 15:21:53 -0700254 <activity android:name=".components.ChangeDefaultDialerDialog"
255 android:label="@string/change_default_dialer_dialog_title"
256 android:excludeFromRecents="true"
257 android:theme="@*android:style/Theme.Material.Light.Dialog.Alert"
258 android:priority="1000"
259 android:process=":ui" >
260 <intent-filter>
261 <action android:name="android.telecom.action.CHANGE_DEFAULT_DIALER" />
262 <category android:name="android.intent.category.DEFAULT" />
263 </intent-filter>
264 </activity>
265
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800266 <receiver android:name=".components.PrimaryCallReceiver"
Santos Cordone6a33f22014-12-02 13:19:00 -0800267 android:exported="true"
268 android:permission="android.permission.MODIFY_PHONE_STATE"
269 android:process="system">
Yorke Lee6dc1c752014-09-23 18:50:35 -0700270 </receiver>
271
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800272 <service android:name=".components.BluetoothPhoneService"
Santos Cordone6a33f22014-12-02 13:19:00 -0800273 android:singleUser="true"
274 android:process="system">
Santos Cordonfddf12e2014-09-25 15:08:57 -0700275 <intent-filter>
276 <action android:name="android.bluetooth.IBluetoothHeadsetPhone" />
277 </intent-filter>
278 </service>
279
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800280 <service android:name=".components.TelecomService"
Santos Cordone6a33f22014-12-02 13:19:00 -0800281 android:singleUser="true"
282 android:process="system">
Santos Cordonf987d1a2014-12-02 03:37:03 -0800283 <intent-filter>
Yorke Lee57f61492015-03-27 14:00:13 -0700284 <action android:name="android.telecom.ITelecomService" />
Santos Cordonf987d1a2014-12-02 03:37:03 -0800285 </intent-filter>
286 </service>
287
Ben Gilad4937ff92013-12-12 12:05:37 -0800288 </application>
289</manifest>