blob: 9d4c4ad17454697253b531ae81cb1feeb73e7e21 [file] [log] [blame]
Jorim Jaggi6e9fa1a2015-04-01 13:37:39 -07001<!--
2 ~ Copyright (C) 2015 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 package="com.android.test.assist">
19
20 <application>
21 <service android:name="AssistInteractionService"
22 android:label="Test Assist Interaction Service"
23 android:permission="android.permission.BIND_VOICE_INTERACTION"
24 android:process=":interactor">
25 <meta-data android:name="android.voice_interaction"
26 android:resource="@xml/interaction_service" />
27 <intent-filter>
28 <action android:name="android.service.voice.VoiceInteractionService" />
29 </intent-filter>
30 <meta-data
31 android:name="com.android.systemui.action_assist_icon"
32 android:resource="@drawable/assistant" />
Selim Cinek704b9f82015-04-27 16:18:37 -070033 <meta-data
34 android:name="com.android.keyguard.layout"
35 android:resource="@layout/keyguard_preview" />
Jorim Jaggi6e9fa1a2015-04-01 13:37:39 -070036 </service>
37 <service android:name="AssistInteractionSessionService"
38 android:permission="android.permission.BIND_VOICE_INTERACTION"
39 android:process=":session">
40 </service>
Selim Cinek704b9f82015-04-27 16:18:37 -070041 <activity android:name=".AboveKeyguardActivity"
42 android:label="Test Above Keyguard Activity"
43 android:theme="@android:style/Theme.NoTitleBar"
44 android:excludeFromRecents="true"
45 android:launchMode="singleTask"
46 android:exported="false" >
47 </activity>
Jorim Jaggi6e9fa1a2015-04-01 13:37:39 -070048 </application>
49</manifest>