2014-04-04 18:02:06 -07:00
|
|
|
<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">
|
2014-04-25 17:06:18 -07:00
|
|
|
<meta-data android:name="android.voice_interaction"
|
|
|
|
android:resource="@xml/interaction_service" />
|
2014-04-04 18:02:06 -07:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.voice.VoiceInteractionService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2014-04-25 17:06:18 -07:00
|
|
|
<service android:name="MainInteractionSessionService"
|
|
|
|
android:permission="android.permission.BIND_VOICE_INTERACTION"
|
|
|
|
android:process=":session">
|
|
|
|
</service>
|
2014-04-04 18:02:06 -07:00
|
|
|
<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>
|