blob: df333a5034bdaab73c14356b426d8660fad276c7 [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
21 <uses-permission android:name="android.permission.CAMERA" />
Yorke Lee562ad5e2015-04-20 16:25:40 -070022 <uses-permission android:name="android.permission.CALL_PHONE" />
Ihab Awad945a82e2015-04-01 19:35:00 -070023 <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" />
Yorke Leefbc95632015-04-27 13:56:13 -070024 <uses-permission android:name="android.permission.READ_CALL_LOG" />
Ihab Awad945a82e2015-04-01 19:35:00 -070025 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
26 <uses-permission android:name="android.permission.REGISTER_CALL_PROVIDER" />
27 <uses-permission android:name="android.permission.REGISTER_CONNECTION_MANAGER" />
28 <uses-permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION" />
Yorke Leefbc95632015-04-27 13:56:13 -070029 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
Ihab Awad945a82e2015-04-01 19:35:00 -070030
31 <application android:label="@string/app_name">
32 <uses-library android:name="android.test.runner" />
33
34 <!-- Miscellaneous telecom app-related test activities. -->
35
36 <service android:name="com.android.server.telecom.testapps.TestConnectionService"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070037 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070038 <intent-filter>
39 <action android:name="android.telecom.ConnectionService" />
40 </intent-filter>
41 </service>
42
43 <service android:name="com.android.server.telecom.testapps.TestConnectionManager"
Yorke Lee7bb8ce92015-05-13 16:28:29 -070044 android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" >
Ihab Awad945a82e2015-04-01 19:35:00 -070045 <intent-filter>
46 <action android:name="android.telecom.ConnectionService" />
47 </intent-filter>
48 </service>
49
50 <service android:name="com.android.server.telecom.testapps.TestInCallServiceImpl"
51 android:process="com.android.server.telecom.testapps.TestInCallService"
52 android:permission="android.permission.BIND_INCALL_SERVICE" >
53 <intent-filter>
54 <action android:name="android.telecom.InCallService"/>
55 </intent-filter>
56 </service>
57
Tyler Gunn33b67292015-04-27 15:41:35 -070058 <receiver android:name="com.android.server.telecom.testapps.TestInCallServiceBroadcastReceiver"
59 android:process="com.android.server.telecom.testapps.TestInCallService" >
60 <intent-filter>
61 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPDATE_REQUEST_FROM_TEST_INCALL_SERVICE"/>
Tyler Gunn86014fc2015-06-12 14:31:25 -070062 <action android:name="android.server.telecom.testapps.ACTION_SEND_UPGRADE_RESPONSE"/>
Tyler Gunnac30f082015-05-05 11:42:05 -070063 <data android:scheme="int" />
Tyler Gunn33b67292015-04-27 15:41:35 -070064 </intent-filter>
65 </receiver>
66
Ihab Awad945a82e2015-04-01 19:35:00 -070067 <activity android:name="com.android.server.telecom.testapps.TestCallActivity"
Yorke Lee17fa0d62015-04-27 14:55:10 -070068 android:theme="@android:style/Theme.NoDisplay"
Tyler Gunn33b67292015-04-27 15:41:35 -070069 android:label="@string/testCallActivityLabel">
Ihab Awad945a82e2015-04-01 19:35:00 -070070 <intent-filter>
71 <action android:name="android.intent.action.MAIN" />
72 <category android:name="android.intent.category.DEFAULT" />
73 <category android:name="android.intent.category.LAUNCHER" />
74 </intent-filter>
75 <intent-filter>
76 <action android:name="android.telecom.testapps.ACTION_START_INCOMING_CALL" />
77 <action android:name="android.telecom.testapps.ACTION_NEW_UNKNOWN_CALL" />
78 <category android:name="android.intent.category.DEFAULT" />
79 <data android:scheme="tel" />
80 <data android:scheme="sip" />
81 </intent-filter>
Yorke Lee2a6985f2015-03-27 12:30:44 -070082 <intent-filter>
83 <action android:name="android.telecom.testapps.ACTION_HANGUP_CALLS" />
84 <category android:name="android.intent.category.DEFAULT" />
85 </intent-filter>
Yorke Lee817090c2015-04-10 12:12:25 -070086 <intent-filter>
87 <action android:name="android.telecom.testapps.ACTION_SEND_UPGRADE_REQUEST" />
88 <category android:name="android.intent.category.DEFAULT" />
89 <data android:scheme="int" />
90 </intent-filter>
Ihab Awad945a82e2015-04-01 19:35:00 -070091 </activity>
92
93 <receiver android:name="com.android.server.telecom.testapps.CallNotificationReceiver"
94 android:exported="false">
95 <intent-filter>
96 <action android:name="com.android.server.telecom.testapps.ACTION_CALL_SERVICE_EXIT" />
97 </intent-filter>
98 </receiver>
99
100 <activity android:name="com.android.server.telecom.testapps.TestDialerActivity"
101 android:label="@string/testDialerActivityLabel"
102 android:process="com.android.server.telecom.testapps.TestInCallService">
103 <intent-filter>
104 <action android:name="android.intent.action.DIAL" />
105 <category android:name="android.intent.category.DEFAULT" />
106 <category android:name="android.intent.category.BROWSABLE" />
107 <data android:mimeType="vnd.android.cursor.item/phone" />
108 <data android:mimeType="vnd.android.cursor.item/person" />
109 </intent-filter>
110 <intent-filter>
111 <action android:name="android.intent.action.DIAL" />
112 <category android:name="android.intent.category.DEFAULT" />
113 <category android:name="android.intent.category.BROWSABLE" />
114 <data android:scheme="voicemail" />
115 </intent-filter>
116 <intent-filter>
117 <action android:name="android.intent.action.DIAL" />
118 <category android:name="android.intent.category.DEFAULT" />
119 </intent-filter>
120 <intent-filter>
121 <action android:name="android.intent.action.VIEW" />
122 <action android:name="android.intent.action.DIAL" />
123 <category android:name="android.intent.category.DEFAULT" />
124 <category android:name="android.intent.category.BROWSABLE" />
125 <data android:scheme="tel" />
126 </intent-filter>
127 <intent-filter>
128 <action android:name="android.intent.action.MAIN" />
129 <category android:name="android.intent.category.DEFAULT" />
130 <category android:name="android.intent.category.LAUNCHER" />
131 </intent-filter>
132 </activity>
133 </application>
134</manifest>