blob: 36d5d984ba42f2431322ed72f3ea11c1e409e67e [file] [log] [blame]
Dianne Hackborn91097de2014-04-04 18:02:06 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.test.voiceinteraction">
3
Dianne Hackborn33f5ddd2014-07-21 15:35:45 -07004 <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
5
Dianne Hackborn91097de2014-04-04 18:02:06 -07006 <application>
Dianne Hackborne30e02f2014-05-27 18:24:45 -07007 <activity android:name="VoiceInteractionMain" android:label="Voice Interaction"
Alan Viverette830960c2014-06-06 15:48:55 -07008 android:theme="@android:style/Theme.Material">
Dianne Hackborn91097de2014-04-04 18:02:06 -07009 <intent-filter>
10 <action android:name="android.intent.action.MAIN" />
11 <category android:name="android.intent.category.DEFAULT" />
12 <category android:name="android.intent.category.LAUNCHER" />
13 </intent-filter>
14 </activity>
Dianne Hackbornae6688b2015-02-11 17:02:41 -080015 <activity android:name="AssistProxyActivity"
16 android:label="Test Assist Proxy"
17 android:theme="@android:style/Theme.NoDisplay"
Barnaby James0134fd82014-08-09 14:10:14 -070018 android:excludeFromRecents="true"
Dianne Hackbornffeecb12015-02-25 11:08:11 -080019 android:noHistory="true"
20 android:taskAffinity="">
Barnaby James0134fd82014-08-09 14:10:14 -070021 <intent-filter>
Dianne Hackbornae6688b2015-02-11 17:02:41 -080022 <action android:name="android.intent.action.ASSIST" />
23 <category android:name="android.intent.category.DEFAULT" />
24 </intent-filter>
25 </activity>
26 <activity android:name="SettingsActivity"
27 android:label="Voice Interaction Settings">
28 <intent-filter>
Barnaby James0134fd82014-08-09 14:10:14 -070029 <action android:name="android.intent.action.MAIN" />
30 <category android:name="android.intent.category.DEFAULT" />
31 </intent-filter>
32 </activity>
Dianne Hackborn91097de2014-04-04 18:02:06 -070033 <service android:name="MainInteractionService"
Barnaby James0134fd82014-08-09 14:10:14 -070034 android:label="Test Voice Interaction Service"
Dianne Hackborn91097de2014-04-04 18:02:06 -070035 android:permission="android.permission.BIND_VOICE_INTERACTION"
36 android:process=":interactor">
Dianne Hackborn18f0d352014-04-25 17:06:18 -070037 <meta-data android:name="android.voice_interaction"
38 android:resource="@xml/interaction_service" />
Dianne Hackborn91097de2014-04-04 18:02:06 -070039 <intent-filter>
40 <action android:name="android.service.voice.VoiceInteractionService" />
41 </intent-filter>
42 </service>
Dianne Hackborn18f0d352014-04-25 17:06:18 -070043 <service android:name="MainInteractionSessionService"
44 android:permission="android.permission.BIND_VOICE_INTERACTION"
45 android:process=":session">
46 </service>
Barnaby James0134fd82014-08-09 14:10:14 -070047 <service android:name="MainRecognitionService"
48 android:label="Test Voice Interaction Service">
49 <intent-filter>
50 <action android:name="android.speech.RecognitionService" />
51 <category android:name="android.intent.category.DEFAULT" />
52 </intent-filter>
53 <meta-data android:name="android.speech" android:resource="@xml/recognition_service" />
54 </service>
Dianne Hackborn20d94742014-05-29 18:35:45 -070055 <activity android:name="TestInteractionActivity" android:label="Voice Interaction Target"
Dianne Hackbornae6688b2015-02-11 17:02:41 -080056 android:theme="@android:style/Theme.Material.Light">
Dianne Hackborn91097de2014-04-04 18:02:06 -070057 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59 <category android:name="android.intent.category.DEFAULT" />
60 <category android:name="android.intent.category.VOICE" />
61 </intent-filter>
62 </activity>
63 </application>
64</manifest>