blob: a539de9eb7321fa69202c3ce0da29cee5309114b [file] [log] [blame]
Ihab Awad945a82e2015-04-01 19:35:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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 coreApp="true"
19 package="com.android.server.telecom.testapps">
20
Yorke Lee1cbe7022015-08-31 18:22:15 -070021 <uses-sdk
22 android:minSdkVersion="23"
23 android:targetSdkVersion="23" />
24
Ihab Awad945a82e2015-04-01 19:35:00 -070025 <uses-permission android:name="android.permission.CAMERA" />
Yorke Lee562ad5e2015-04-20 16:25:40 -070026 <uses-permission android:name="android.permission.CALL_PHONE" />
Ihab Awad945a82e2015-04-01 19:35:00 -070027 <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" />
pkanwarc0d60432017-05-04 09:17:23 -070028 <uses-permission android:name="android.permission.INTERNET" />
Tyler Gunna90ba732017-01-26 07:24:08 -080029 <uses-permission android:name="android.permission.MANAGE_OWN_CALLS" />
Yorke Leefbc95632015-04-27 13:56:13 -070030 <uses-permission android:name="android.permission.READ_CALL_LOG" />
Ihab Awad945a82e2015-04-01 19:35:00 -070031 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
32 <uses-permission android:name="android.permission.REGISTER_CALL_PROVIDER" />
33 <uses-permission android:name="android.permission.REGISTER_CONNECTION_MANAGER" />
34 <uses-permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION" />
Yorke Leefbc95632015-04-27 13:56:13 -070035 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
Ihab Awad945a82e2015-04-01 19:35:00 -070036
37 <application android:label="@string/app_name">
38 <uses-library android:name="android.test.runner" />
39
40 <!-- Miscellaneous telecom app-related test activities. -->
41
42 <service android:name="com.android.server.telecom.testapps.TestConnectionService"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070043 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070044 <intent-filter>
45 <action android:name="android.telecom.ConnectionService" />
46 </intent-filter>
47 </service>
48
Brad Ebinger06a47b02017-08-18 13:09:06 -070049 <receiver android:name=".TestConnectionServiceReceiver">
50 <intent-filter>
51 <action android:name="android.server.telecom.testapps.ACTION_SWITCH_PHONE_ACCOUNT"/>
52 <action android:name="android.server.telecom.testapps.ACTION_SWITCH_PHONE_ACCOUNT_WRONG"/>
53 </intent-filter>
54 </receiver>
55
Ihab Awad945a82e2015-04-01 19:35:00 -070056 <service android:name="com.android.server.telecom.testapps.TestConnectionManager"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070057 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070058 <intent-filter>
59 <action android:name="android.telecom.ConnectionService" />
60 </intent-filter>
61 </service>
62
63 <service android:name="com.android.server.telecom.testapps.TestInCallServiceImpl"
64 android:process="com.android.server.telecom.testapps.TestInCallService"
65 android:permission="android.permission.BIND_INCALL_SERVICE" >
Santos Cordon501b9b32016-03-07 14:40:07 -080066 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true"/>
Ihab Awad945a82e2015-04-01 19:35:00 -070067 <intent-filter>
68 <action android:name="android.telecom.InCallService"/>
69 </intent-filter>
70 </service>
71
Tyler Gunn33b67292015-04-27 15:41:35 -070072 <receiver android:name="com.android.server.telecom.testapps.TestInCallServiceBroadcastReceiver"
73 android:process="com.android.server.telecom.testapps.TestInCallService" >
74 <intent-filter>
75 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPDATE_REQUEST_FROM_TEST_INCALL_SERVICE"/>
Tyler Gunn86014fc2015-06-12 14:31:25 -070076 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPGRADE_RESPONSE"/>
Tyler Gunnea4c6fb2017-04-14 13:46:21 -070077 <action android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED"/>
78 <action android:name="android.telecom.action.PHONE_ACCOUNT_UNREGISTERED"/>
Tyler Gunn33b67292015-04-27 15:41:35 -070079 </intent-filter>
80 </receiver>
81
Brad Ebinger06a47b02017-08-18 13:09:06 -070082
83
Santos Cordonf78a72f2016-01-21 22:10:32 +000084 <activity android:name="com.android.server.telecom.testapps.TestInCallUI"
85 android:process="com.android.server.telecom.testapps.TestInCallService"
86 android:label="@string/inCallUiAppLabel"
87 android:launchMode="singleInstance">
88 <intent-filter>
89 <action android:name="android.intent.action.MAIN" />
90 <category android:name="android.intent.category.DEFAULT" />
91 <category android:name="android.intent.category.LAUNCHER" />
92 </intent-filter>
93 </activity>
94
Hall Liudd68bc32017-01-25 17:14:23 -080095 <activity android:name="com.android.server.telecom.testapps.TestRttActivity"
96 android:process="com.android.server.telecom.testapps.TestInCallService"
97 android:label="@string/rttUiLabel"
98 android:launchMode="singleInstance">
99 <intent-filter>
100 <action android:name="android.intent.action.MAIN" />
101 <category android:name="android.intent.category.DEFAULT" />
102 </intent-filter>
103 </activity>
104
Ihab Awad945a82e2015-04-01 19:35:00 -0700105 <activity android:name="com.android.server.telecom.testapps.TestCallActivity"
Yorke Lee17fa0d62015-04-27 14:55:10 -0700106 android:theme="@android:style/Theme.NoDisplay"
Tyler Gunn33b67292015-04-27 15:41:35 -0700107 android:label="@string/testCallActivityLabel">
Ihab Awad945a82e2015-04-01 19:35:00 -0700108 <intent-filter>
109 <action android:name="android.intent.action.MAIN" />
110 <category android:name="android.intent.category.DEFAULT" />
111 <category android:name="android.intent.category.LAUNCHER" />
112 </intent-filter>
113 <intent-filter>
114 <action android:name="android.telecom.testapps.ACTION_START_INCOMING_CALL" />
115 <action android:name="android.telecom.testapps.ACTION_NEW_UNKNOWN_CALL" />
116 <category android:name="android.intent.category.DEFAULT" />
117 <data android:scheme="tel" />
118 <data android:scheme="sip" />
119 </intent-filter>
Yorke Lee2a6985f2015-03-27 12:30:44 -0700120 <intent-filter>
121 <action android:name="android.telecom.testapps.ACTION_HANGUP_CALLS" />
122 <category android:name="android.intent.category.DEFAULT" />
123 </intent-filter>
Yorke Lee817090c2015-04-10 12:12:25 -0700124 <intent-filter>
125 <action android:name="android.telecom.testapps.ACTION_SEND_UPGRADE_REQUEST" />
126 <category android:name="android.intent.category.DEFAULT" />
127 <data android:scheme="int" />
128 </intent-filter>
Hall Liudd68bc32017-01-25 17:14:23 -0800129 <intent-filter>
130 <action android:name="android.telecom.testapps.ACTION_RTT_CALL" />
131 <category android:name="android.intent.category.DEFAULT" />
132 <data android:scheme="tel" />
133 </intent-filter>
Hall Liuaeece4e2017-02-14 16:42:12 -0800134 <intent-filter>
135 <action android:name="android.telecom.testapps.ACTION_REMOTE_RTT_UPGRADE" />
136 <category android:name="android.intent.category.DEFAULT" />
137 </intent-filter>
Ihab Awad945a82e2015-04-01 19:35:00 -0700138 </activity>
139
140 <receiver android:name="com.android.server.telecom.testapps.CallNotificationReceiver"
141 android:exported="false">
142 <intent-filter>
143 <action android:name="com.android.server.telecom.testapps.ACTION_CALL_SERVICE_EXIT" />
144 </intent-filter>
145 </receiver>
146
147 <activity android:name="com.android.server.telecom.testapps.TestDialerActivity"
148 android:label="@string/testDialerActivityLabel"
149 android:process="com.android.server.telecom.testapps.TestInCallService">
150 <intent-filter>
151 <action android:name="android.intent.action.DIAL" />
152 <category android:name="android.intent.category.DEFAULT" />
153 <category android:name="android.intent.category.BROWSABLE" />
154 <data android:mimeType="vnd.android.cursor.item/phone" />
155 <data android:mimeType="vnd.android.cursor.item/person" />
156 </intent-filter>
157 <intent-filter>
158 <action android:name="android.intent.action.DIAL" />
159 <category android:name="android.intent.category.DEFAULT" />
160 <category android:name="android.intent.category.BROWSABLE" />
161 <data android:scheme="voicemail" />
162 </intent-filter>
163 <intent-filter>
164 <action android:name="android.intent.action.DIAL" />
165 <category android:name="android.intent.category.DEFAULT" />
166 </intent-filter>
167 <intent-filter>
168 <action android:name="android.intent.action.VIEW" />
169 <action android:name="android.intent.action.DIAL" />
170 <category android:name="android.intent.category.DEFAULT" />
171 <category android:name="android.intent.category.BROWSABLE" />
172 <data android:scheme="tel" />
173 </intent-filter>
174 <intent-filter>
175 <action android:name="android.intent.action.MAIN" />
176 <category android:name="android.intent.category.DEFAULT" />
177 <category android:name="android.intent.category.LAUNCHER" />
178 </intent-filter>
179 </activity>
pkanwardc4c14d2016-10-31 11:04:18 -0700180
181 <activity android:name="com.android.server.telecom.testapps.TestUssdActivity"
182 android:label="@string/UssdUiAppLabel"
183 android:launchMode="singleInstance">
184 <intent-filter>
185 <action android:name="android.intent.action.MAIN" />
186 <category android:name="android.intent.category.DEFAULT" />
187 <category android:name="android.intent.category.LAUNCHER" />
188 </intent-filter>
Tyler Gunna90ba732017-01-26 07:24:08 -0800189 </activity>
190
pkanwarc0d60432017-05-04 09:17:23 -0700191 <activity android:name="com.android.server.telecom.testapps.TestCertActivity"
192 android:label="@string/KeyUiAppLabel"
193 android:launchMode="singleInstance">
194 <intent-filter>
195 <action android:name="android.intent.action.MAIN" />
196 <category android:name="android.intent.category.DEFAULT" />
197 <category android:name="android.intent.category.LAUNCHER" />
198 </intent-filter>
199 </activity>
200
Tyler Gunna90ba732017-01-26 07:24:08 -0800201 <activity android:name="com.android.server.telecom.testapps.SelfManagedCallingActivity"
202 android:label="@string/selfManagedCallingActivityLabel"
Tyler Gunn2b17f232017-03-08 08:51:00 -0800203 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp"
204 android:theme="@android:style/Theme.Material.Light">
Tyler Gunna90ba732017-01-26 07:24:08 -0800205 <intent-filter>
206 <action android:name="android.intent.action.MAIN" />
207 <category android:name="android.intent.category.DEFAULT" />
208 <category android:name="android.intent.category.LAUNCHER" />
209 </intent-filter>
pkanwardc4c14d2016-10-31 11:04:18 -0700210 </activity>
Tyler Gunna90ba732017-01-26 07:24:08 -0800211
Tyler Gunn115c06e2017-03-02 09:29:07 -0800212 <activity android:name="com.android.server.telecom.testapps.IncomingSelfManagedCallActivity"
213 android:label="@string/selfManagedCallingActivityLabel"
214 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
215 <intent-filter>
216 <action android:name="android.intent.action.MAIN" />
217 </intent-filter>
218 </activity>
219
Tyler Gunn6f9ceb22017-04-06 08:47:01 -0700220 <activity android:name="com.android.server.telecom.testapps.HandoverActivity"
221 android:label="@string/selfManagedCallingActivityLabel"
222 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
223 <intent-filter>
224 <action android:name="android.intent.action.MAIN" />
225 </intent-filter>
226 </activity>
227
Tyler Gunna90ba732017-01-26 07:24:08 -0800228 <service android:name="com.android.server.telecom.testapps.SelfManagedConnectionService"
229 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
230 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
231 <intent-filter>
232 <action android:name="android.telecom.ConnectionService" />
233 </intent-filter>
234 </service>
Tyler Gunn115c06e2017-03-02 09:29:07 -0800235
236 <receiver android:exported="false"
237 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp"
238 android:name="com.android.server.telecom.testapps.SelfManagedCallNotificationReceiver" />
Ihab Awad945a82e2015-04-01 19:35:00 -0700239 </application>
240</manifest>