blob: 776759ec8a35f2de10151e8d7a931f47dd92f0f0 [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" />
Tyler Gunn9517c962017-01-26 07:24:08 -080028 <uses-permission android:name="android.permission.MANAGE_OWN_CALLS" />
Yorke Leefbc95632015-04-27 13:56:13 -070029 <uses-permission android:name="android.permission.READ_CALL_LOG" />
Ihab Awad945a82e2015-04-01 19:35:00 -070030 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
31 <uses-permission android:name="android.permission.REGISTER_CALL_PROVIDER" />
32 <uses-permission android:name="android.permission.REGISTER_CONNECTION_MANAGER" />
33 <uses-permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION" />
Yorke Leefbc95632015-04-27 13:56:13 -070034 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
Ihab Awad945a82e2015-04-01 19:35:00 -070035
36 <application android:label="@string/app_name">
37 <uses-library android:name="android.test.runner" />
38
39 <!-- Miscellaneous telecom app-related test activities. -->
40
41 <service android:name="com.android.server.telecom.testapps.TestConnectionService"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070042 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070043 <intent-filter>
44 <action android:name="android.telecom.ConnectionService" />
45 </intent-filter>
46 </service>
47
48 <service android:name="com.android.server.telecom.testapps.TestConnectionManager"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070049 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070050 <intent-filter>
51 <action android:name="android.telecom.ConnectionService" />
52 </intent-filter>
53 </service>
54
55 <service android:name="com.android.server.telecom.testapps.TestInCallServiceImpl"
56 android:process="com.android.server.telecom.testapps.TestInCallService"
57 android:permission="android.permission.BIND_INCALL_SERVICE" >
Santos Cordon501b9b32016-03-07 14:40:07 -080058 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true"/>
Ihab Awad945a82e2015-04-01 19:35:00 -070059 <intent-filter>
60 <action android:name="android.telecom.InCallService"/>
61 </intent-filter>
62 </service>
63
Tyler Gunn33b67292015-04-27 15:41:35 -070064 <receiver android:name="com.android.server.telecom.testapps.TestInCallServiceBroadcastReceiver"
65 android:process="com.android.server.telecom.testapps.TestInCallService" >
66 <intent-filter>
67 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPDATE_REQUEST_FROM_TEST_INCALL_SERVICE"/>
Tyler Gunn86014fc2015-06-12 14:31:25 -070068 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPGRADE_RESPONSE"/>
Tyler Gunnac30f082015-05-05 11:42:05 -070069 <data android:scheme="int" />
Tyler Gunn33b67292015-04-27 15:41:35 -070070 </intent-filter>
71 </receiver>
72
Santos Cordonf78a72f2016-01-21 22:10:32 +000073 <activity android:name="com.android.server.telecom.testapps.TestInCallUI"
74 android:process="com.android.server.telecom.testapps.TestInCallService"
75 android:label="@string/inCallUiAppLabel"
76 android:launchMode="singleInstance">
77 <intent-filter>
78 <action android:name="android.intent.action.MAIN" />
79 <category android:name="android.intent.category.DEFAULT" />
80 <category android:name="android.intent.category.LAUNCHER" />
81 </intent-filter>
82 </activity>
83
Hall Liudd68bc32017-01-25 17:14:23 -080084 <activity android:name="com.android.server.telecom.testapps.TestRttActivity"
85 android:process="com.android.server.telecom.testapps.TestInCallService"
86 android:label="@string/rttUiLabel"
87 android:launchMode="singleInstance">
88 <intent-filter>
89 <action android:name="android.intent.action.MAIN" />
90 <category android:name="android.intent.category.DEFAULT" />
91 </intent-filter>
92 </activity>
93
Ihab Awad945a82e2015-04-01 19:35:00 -070094 <activity android:name="com.android.server.telecom.testapps.TestCallActivity"
Yorke Lee17fa0d62015-04-27 14:55:10 -070095 android:theme="@android:style/Theme.NoDisplay"
Tyler Gunn33b67292015-04-27 15:41:35 -070096 android:label="@string/testCallActivityLabel">
Ihab Awad945a82e2015-04-01 19:35:00 -070097 <intent-filter>
98 <action android:name="android.intent.action.MAIN" />
99 <category android:name="android.intent.category.DEFAULT" />
100 <category android:name="android.intent.category.LAUNCHER" />
101 </intent-filter>
102 <intent-filter>
103 <action android:name="android.telecom.testapps.ACTION_START_INCOMING_CALL" />
104 <action android:name="android.telecom.testapps.ACTION_NEW_UNKNOWN_CALL" />
105 <category android:name="android.intent.category.DEFAULT" />
106 <data android:scheme="tel" />
107 <data android:scheme="sip" />
108 </intent-filter>
Yorke Lee2a6985f2015-03-27 12:30:44 -0700109 <intent-filter>
110 <action android:name="android.telecom.testapps.ACTION_HANGUP_CALLS" />
111 <category android:name="android.intent.category.DEFAULT" />
112 </intent-filter>
Yorke Lee817090c2015-04-10 12:12:25 -0700113 <intent-filter>
114 <action android:name="android.telecom.testapps.ACTION_SEND_UPGRADE_REQUEST" />
115 <category android:name="android.intent.category.DEFAULT" />
116 <data android:scheme="int" />
117 </intent-filter>
Hall Liudd68bc32017-01-25 17:14:23 -0800118 <intent-filter>
119 <action android:name="android.telecom.testapps.ACTION_RTT_CALL" />
120 <category android:name="android.intent.category.DEFAULT" />
121 <data android:scheme="tel" />
122 </intent-filter>
Ihab Awad945a82e2015-04-01 19:35:00 -0700123 </activity>
124
125 <receiver android:name="com.android.server.telecom.testapps.CallNotificationReceiver"
126 android:exported="false">
127 <intent-filter>
128 <action android:name="com.android.server.telecom.testapps.ACTION_CALL_SERVICE_EXIT" />
129 </intent-filter>
130 </receiver>
131
132 <activity android:name="com.android.server.telecom.testapps.TestDialerActivity"
133 android:label="@string/testDialerActivityLabel"
134 android:process="com.android.server.telecom.testapps.TestInCallService">
135 <intent-filter>
136 <action android:name="android.intent.action.DIAL" />
137 <category android:name="android.intent.category.DEFAULT" />
138 <category android:name="android.intent.category.BROWSABLE" />
139 <data android:mimeType="vnd.android.cursor.item/phone" />
140 <data android:mimeType="vnd.android.cursor.item/person" />
141 </intent-filter>
142 <intent-filter>
143 <action android:name="android.intent.action.DIAL" />
144 <category android:name="android.intent.category.DEFAULT" />
145 <category android:name="android.intent.category.BROWSABLE" />
146 <data android:scheme="voicemail" />
147 </intent-filter>
148 <intent-filter>
149 <action android:name="android.intent.action.DIAL" />
150 <category android:name="android.intent.category.DEFAULT" />
151 </intent-filter>
152 <intent-filter>
153 <action android:name="android.intent.action.VIEW" />
154 <action android:name="android.intent.action.DIAL" />
155 <category android:name="android.intent.category.DEFAULT" />
156 <category android:name="android.intent.category.BROWSABLE" />
157 <data android:scheme="tel" />
158 </intent-filter>
159 <intent-filter>
160 <action android:name="android.intent.action.MAIN" />
161 <category android:name="android.intent.category.DEFAULT" />
162 <category android:name="android.intent.category.LAUNCHER" />
163 </intent-filter>
164 </activity>
Tyler Gunn9517c962017-01-26 07:24:08 -0800165
166 <activity android:name="com.android.server.telecom.testapps.SelfManagedCallingActivity"
167 android:label="@string/selfManagedCallingActivityLabel"
168 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
169 <intent-filter>
170 <action android:name="android.intent.action.MAIN" />
171 <category android:name="android.intent.category.DEFAULT" />
172 <category android:name="android.intent.category.LAUNCHER" />
173 </intent-filter>
174 </activity>
175
Tyler Gunn115c06e2017-03-02 09:29:07 -0800176 <activity android:name="com.android.server.telecom.testapps.IncomingSelfManagedCallActivity"
177 android:label="@string/selfManagedCallingActivityLabel"
178 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
179 <intent-filter>
180 <action android:name="android.intent.action.MAIN" />
181 </intent-filter>
182 </activity>
183
Tyler Gunn9517c962017-01-26 07:24:08 -0800184 <service android:name="com.android.server.telecom.testapps.SelfManagedConnectionService"
185 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
186 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp">
187 <intent-filter>
188 <action android:name="android.telecom.ConnectionService" />
189 </intent-filter>
190 </service>
Tyler Gunn115c06e2017-03-02 09:29:07 -0800191
192 <receiver android:exported="false"
193 android:process="com.android.server.telecom.testapps.SelfMangingCallingApp"
194 android:name="com.android.server.telecom.testapps.SelfManagedCallNotificationReceiver" />
Ihab Awad945a82e2015-04-01 19:35:00 -0700195 </application>
196</manifest>