blob: 83f021fcce27856f1d0c0fc5885a868a82549095 [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
49 <service android:name="com.android.server.telecom.testapps.TestConnectionManager"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070050 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070051 <intent-filter>
52 <action android:name="android.telecom.ConnectionService" />
53 </intent-filter>
54 </service>
55
56 <service android:name="com.android.server.telecom.testapps.TestInCallServiceImpl"
57 android:process="com.android.server.telecom.testapps.TestInCallService"
58 android:permission="android.permission.BIND_INCALL_SERVICE" >
Santos Cordon501b9b32016-03-07 14:40:07 -080059 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true"/>
Ihab Awad945a82e2015-04-01 19:35:00 -070060 <intent-filter>
61 <action android:name="android.telecom.InCallService"/>
62 </intent-filter>
63 </service>
64
Tyler Gunn33b67292015-04-27 15:41:35 -070065 <receiver android:name="com.android.server.telecom.testapps.TestInCallServiceBroadcastReceiver"
66 android:process="com.android.server.telecom.testapps.TestInCallService" >
67 <intent-filter>
68 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPDATE_REQUEST_FROM_TEST_INCALL_SERVICE"/>
Tyler Gunn86014fc2015-06-12 14:31:25 -070069 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPGRADE_RESPONSE"/>
Tyler Gunnea4c6fb2017-04-14 13:46:21 -070070 <action android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED"/>
71 <action android:name="android.telecom.action.PHONE_ACCOUNT_UNREGISTERED"/>
Tyler Gunn33b67292015-04-27 15:41:35 -070072 </intent-filter>
73 </receiver>
74
Santos Cordonf78a72f2016-01-21 22:10:32 +000075 <activity android:name="com.android.server.telecom.testapps.TestInCallUI"
76 android:process="com.android.server.telecom.testapps.TestInCallService"
77 android:label="@string/inCallUiAppLabel"
78 android:launchMode="singleInstance">
79 <intent-filter>
80 <action android:name="android.intent.action.MAIN" />
81 <category android:name="android.intent.category.DEFAULT" />
82 <category android:name="android.intent.category.LAUNCHER" />
83 </intent-filter>
84 </activity>
85
Hall Liudd68bc32017-01-25 17:14:23 -080086 <activity android:name="com.android.server.telecom.testapps.TestRttActivity"
87 android:process="com.android.server.telecom.testapps.TestInCallService"
88 android:label="@string/rttUiLabel"
89 android:launchMode="singleInstance">
90 <intent-filter>
91 <action android:name="android.intent.action.MAIN" />
92 <category android:name="android.intent.category.DEFAULT" />
93 </intent-filter>
94 </activity>
95
Ihab Awad945a82e2015-04-01 19:35:00 -070096 <activity android:name="com.android.server.telecom.testapps.TestCallActivity"
Yorke Lee17fa0d62015-04-27 14:55:10 -070097 android:theme="@android:style/Theme.NoDisplay"
Tyler Gunn33b67292015-04-27 15:41:35 -070098 android:label="@string/testCallActivityLabel">
Ihab Awad945a82e2015-04-01 19:35:00 -070099 <intent-filter>
100 <action android:name="android.intent.action.MAIN" />
101 <category android:name="android.intent.category.DEFAULT" />
102 <category android:name="android.intent.category.LAUNCHER" />
103 </intent-filter>
104 <intent-filter>
105 <action android:name="android.telecom.testapps.ACTION_START_INCOMING_CALL" />
106 <action android:name="android.telecom.testapps.ACTION_NEW_UNKNOWN_CALL" />
107 <category android:name="android.intent.category.DEFAULT" />
108 <data android:scheme="tel" />
109 <data android:scheme="sip" />
110 </intent-filter>
Yorke Lee2a6985f2015-03-27 12:30:44 -0700111 <intent-filter>
112 <action android:name="android.telecom.testapps.ACTION_HANGUP_CALLS" />
113 <category android:name="android.intent.category.DEFAULT" />
114 </intent-filter>
Yorke Lee817090c2015-04-10 12:12:25 -0700115 <intent-filter>
116 <action android:name="android.telecom.testapps.ACTION_SEND_UPGRADE_REQUEST" />
117 <category android:name="android.intent.category.DEFAULT" />
118 <data android:scheme="int" />
119 </intent-filter>
Hall Liudd68bc32017-01-25 17:14:23 -0800120 <intent-filter>
121 <action android:name="android.telecom.testapps.ACTION_RTT_CALL" />
122 <category android:name="android.intent.category.DEFAULT" />
123 <data android:scheme="tel" />
124 </intent-filter>
Hall Liuaeece4e2017-02-14 16:42:12 -0800125 <intent-filter>
126 <action android:name="android.telecom.testapps.ACTION_REMOTE_RTT_UPGRADE" />
127 <category android:name="android.intent.category.DEFAULT" />
128 </intent-filter>
Ihab Awad945a82e2015-04-01 19:35:00 -0700129 </activity>
130
131 <receiver android:name="com.android.server.telecom.testapps.CallNotificationReceiver"
132 android:exported="false">
133 <intent-filter>
134 <action android:name="com.android.server.telecom.testapps.ACTION_CALL_SERVICE_EXIT" />
135 </intent-filter>
136 </receiver>
137
138 <activity android:name="com.android.server.telecom.testapps.TestDialerActivity"
139 android:label="@string/testDialerActivityLabel"
140 android:process="com.android.server.telecom.testapps.TestInCallService">
141 <intent-filter>
142 <action android:name="android.intent.action.DIAL" />
143 <category android:name="android.intent.category.DEFAULT" />
144 <category android:name="android.intent.category.BROWSABLE" />
145 <data android:mimeType="vnd.android.cursor.item/phone" />
146 <data android:mimeType="vnd.android.cursor.item/person" />
147 </intent-filter>
148 <intent-filter>
149 <action android:name="android.intent.action.DIAL" />
150 <category android:name="android.intent.category.DEFAULT" />
151 <category android:name="android.intent.category.BROWSABLE" />
152 <data android:scheme="voicemail" />
153 </intent-filter>
154 <intent-filter>
155 <action android:name="android.intent.action.DIAL" />
156 <category android:name="android.intent.category.DEFAULT" />
157 </intent-filter>
158 <intent-filter>
159 <action android:name="android.intent.action.VIEW" />
160 <action android:name="android.intent.action.DIAL" />
161 <category android:name="android.intent.category.DEFAULT" />
162 <category android:name="android.intent.category.BROWSABLE" />
163 <data android:scheme="tel" />
164 </intent-filter>
165 <intent-filter>
166 <action android:name="android.intent.action.MAIN" />
167 <category android:name="android.intent.category.DEFAULT" />
168 <category android:name="android.intent.category.LAUNCHER" />
169 </intent-filter>
170 </activity>
pkanwardc4c14d2016-10-31 11:04:18 -0700171
172 <activity android:name="com.android.server.telecom.testapps.TestUssdActivity"
173 android:label="@string/UssdUiAppLabel"
174 android:launchMode="singleInstance">
175 <intent-filter>
176 <action android:name="android.intent.action.MAIN" />
177 <category android:name="android.intent.category.DEFAULT" />
178 <category android:name="android.intent.category.LAUNCHER" />
179 </intent-filter>
Tyler Gunna90ba732017-01-26 07:24:08 -0800180 </activity>
181
pkanwarc0d60432017-05-04 09:17:23 -0700182 <activity android:name="com.android.server.telecom.testapps.TestCertActivity"
183 android:label="@string/KeyUiAppLabel"
184 android:launchMode="singleInstance">
185 <intent-filter>
186 <action android:name="android.intent.action.MAIN" />
187 <category android:name="android.intent.category.DEFAULT" />
188 <category android:name="android.intent.category.LAUNCHER" />
189 </intent-filter>
190 </activity>
191
Tyler Gunna90ba732017-01-26 07:24:08 -0800192 <activity android:name="com.android.server.telecom.testapps.SelfManagedCallingActivity"
193 android:label="@string/selfManagedCallingActivityLabel"
Tyler Gunn2b17f232017-03-08 08:51:00 -0800194 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp"
195 android:theme="@android:style/Theme.Material.Light">
Tyler Gunna90ba732017-01-26 07:24:08 -0800196 <intent-filter>
197 <action android:name="android.intent.action.MAIN" />
198 <category android:name="android.intent.category.DEFAULT" />
199 <category android:name="android.intent.category.LAUNCHER" />
200 </intent-filter>
pkanwardc4c14d2016-10-31 11:04:18 -0700201 </activity>
Tyler Gunna90ba732017-01-26 07:24:08 -0800202
Tyler Gunn115c06e2017-03-02 09:29:07 -0800203 <activity android:name="com.android.server.telecom.testapps.IncomingSelfManagedCallActivity"
204 android:label="@string/selfManagedCallingActivityLabel"
205 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
206 <intent-filter>
207 <action android:name="android.intent.action.MAIN" />
208 </intent-filter>
209 </activity>
210
Tyler Gunn6f9ceb22017-04-06 08:47:01 -0700211 <activity android:name="com.android.server.telecom.testapps.HandoverActivity"
212 android:label="@string/selfManagedCallingActivityLabel"
213 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
214 <intent-filter>
215 <action android:name="android.intent.action.MAIN" />
216 </intent-filter>
217 </activity>
218
Tyler Gunna90ba732017-01-26 07:24:08 -0800219 <service android:name="com.android.server.telecom.testapps.SelfManagedConnectionService"
220 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
221 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
222 <intent-filter>
223 <action android:name="android.telecom.ConnectionService" />
224 </intent-filter>
225 </service>
Tyler Gunn115c06e2017-03-02 09:29:07 -0800226
227 <receiver android:exported="false"
228 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp"
229 android:name="com.android.server.telecom.testapps.SelfManagedCallNotificationReceiver" />
Ihab Awad945a82e2015-04-01 19:35:00 -0700230 </application>
231</manifest>