blob: 354d77116d0b12bceb823e1a85bee46b77508b7d [file] [log] [blame]
Alice Leed71a07b2015-07-29 14:30:56 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (C) 2015 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 -->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="android.assist.service">
20
Alice Leeeb39d692015-08-25 14:29:16 -070021 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
22
Alice Leed71a07b2015-07-29 14:30:56 -070023 <application>
24 <uses-library android:name="android.test.runner" />
25 <service android:name=".MainInteractionService"
26 android:label="CTS test voice interaction service"
27 android:permission="android.permission.BIND_VOICE_INTERACTION"
28 android:process=":interactor"
29 android:exported="true">
30 <meta-data android:name="android.voice_interaction"
31 android:resource="@xml/interaction_service" />
32 <intent-filter>
33 <action android:name="android.service.voice.VoiceInteractionService" />
34 </intent-filter>
35 </service>
Alice Lee0cad7a12015-08-19 14:54:54 -070036 <activity android:name=".DisableContextActivity" >
Alice Leed71a07b2015-07-29 14:30:56 -070037 <intent-filter>
38 <action android:name="android.intent.action.START_TEST_DISABLE_CONTEXT" />
39 <category android:name="android.intent.category.DEFAULT" />
40 </intent-filter>
41 </activity>
Cameron Nealeff1da6f2015-08-18 14:44:20 -070042 <activity android:name=".DelayedAssistantActivity"
43 android:label="Delay Assistant Start Activity">
44 <intent-filter>
Alice Lee0cad7a12015-08-19 14:54:54 -070045 <action android:name="android.intent.action.START_TEST_ASSIST_STRUCTURE" />
Cameron Nealeff1da6f2015-08-18 14:44:20 -070046 <action android:name="android.intent.action.START_TEST_LIFECYCLE" />
47 <action android:name="android.intent.action.START_TEST_FLAG_SECURE" />
Alice Leeeb39d692015-08-25 14:29:16 -070048 <action android:name="android.intent.action.START_TEST_SCREENSHOT" />
Alice Lee37ad8082015-09-02 15:14:00 -070049 <action android:name="android.intent.action.START_TEST_EXTRA_ASSIST" />
Alice Leee4839c32015-09-04 15:11:35 -070050 <action android:name="android.intent.action.START_TEST_TEXTVIEW" />
51 <action android:name="android.intent.action.START_TEST_LARGE_VIEW_HIERARCHY" />
Cameron Nealeff1da6f2015-08-18 14:44:20 -070052 <category android:name="android.intent.category.DEFAULT" />
53 </intent-filter>
54 </activity>
Alice Leed71a07b2015-07-29 14:30:56 -070055 <service android:name=".MainInteractionSessionService"
56 android:permission="android.permission.BIND_VOICE_INTERACTION"
57 android:process=":session">
58 </service>
59 <service android:name=".MainRecognitionService"
60 android:label="CTS Voice Recognition Service">
61 <intent-filter>
62 <action android:name="android.speech.RecognitionService" />
63 <category android:name="android.intent.category.DEFAULT" />
64 </intent-filter>
65 <meta-data android:name="android.speech" android:resource="@xml/recognition_service" />
66 </service>
67 </application>
68</manifest>
69