summaryrefslogtreecommitdiffstats
path: root/tests/VoiceInteraction/AndroidManifest.xml
blob: 9c5acf9d2e7d0462318aa5f286dfd07625479366 (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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.test.voiceinteraction">

    <application>
        <activity android:name="VoiceInteractionMain" android:label="Voice Interaction">
            <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">
            <intent-filter>
                <action android:name="android.service.voice.VoiceInteractionService" />
            </intent-filter>
        </service>
        <activity android:name="TestInteractionActivity" android:label="Voice Interaction Target">
            <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>