2014-04-04 18:02:06 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.test.voiceinteraction">
|
|
|
|
|
2014-07-21 15:35:45 -07:00
|
|
|
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
|
|
|
|
|
2014-04-04 18:02:06 -07:00
|
|
|
<application>
|
2014-05-27 18:24:45 -07:00
|
|
|
<activity android:name="VoiceInteractionMain" android:label="Voice Interaction"
|
2014-06-06 15:48:55 -07:00
|
|
|
android:theme="@android:style/Theme.Material">
|
2014-04-04 18:02:06 -07:00
|
|
|
<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>
|
2015-02-11 17:02:41 -08:00
|
|
|
<activity android:name="AssistProxyActivity"
|
|
|
|
android:label="Test Assist Proxy"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay"
|
2014-08-09 14:10:14 -07:00
|
|
|
android:excludeFromRecents="true"
|
2015-02-25 11:08:11 -08:00
|
|
|
android:noHistory="true"
|
|
|
|
android:taskAffinity="">
|
2015-02-11 17:02:41 -08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ASSIST" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="SettingsActivity"
|
|
|
|
android:label="Voice Interaction Settings">
|
2014-08-09 14:10:14 -07:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-04-04 18:02:06 -07:00
|
|
|
<service android:name="MainInteractionService"
|
2014-08-09 14:10:14 -07:00
|
|
|
android:label="Test Voice Interaction Service"
|
2014-04-04 18:02:06 -07:00
|
|
|
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-08-09 14:10:14 -07:00
|
|
|
<service android:name="MainRecognitionService"
|
|
|
|
android:label="Test Voice Interaction Service">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.speech.RecognitionService" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.speech" android:resource="@xml/recognition_service" />
|
|
|
|
</service>
|
2014-05-29 18:35:45 -07:00
|
|
|
<activity android:name="TestInteractionActivity" android:label="Voice Interaction Target"
|
2015-02-11 17:02:41 -08:00
|
|
|
android:theme="@android:style/Theme.Material.Light">
|
2014-04-04 18:02:06 -07:00
|
|
|
<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>
|