summaryrefslogtreecommitdiffstats
path: root/tests/VoiceInteraction/AndroidManifest.xml
blob: 33f000d725a831445138ae5bc40562ffc41bca2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.test.voiceinteraction">

    <application>
        <activity android:name="VoiceInteractionMain" android:label="Voice Interaction"
                android:theme="@android:style/Theme.Material">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <service android:name="MainInteractionService"
                android:permission="android.permission.BIND_VOICE_INTERACTION"
                android:process=":interactor">
            <meta-data android:name="android.voice_interaction"
                       android:resource="@xml/interaction_service" />
            <intent-filter>
                <action android:name="android.service.voice.VoiceInteractionService" />
            </intent-filter>
        </service>
        <service android:name="MainInteractionSessionService"
                android:permission="android.permission.BIND_VOICE_INTERACTION"
                android:process=":session">
        </service>
        <activity android:name="TestInteractionActivity" android:label="Voice Interaction Target"
                  android:theme="@android:style/Theme.Material.Light.Voice">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.VOICE" />
            </intent-filter>
        </activity>
    </application>
</manifest>