Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.test.voiceinteraction"> |
| 3 | |
Dianne Hackborn | 33f5ddd | 2014-07-21 15:35:45 -0700 | [diff] [blame] | 4 | <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" /> |
| 5 | |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 6 | <application> |
Dianne Hackborn | e30e02f | 2014-05-27 18:24:45 -0700 | [diff] [blame] | 7 | <activity android:name="VoiceInteractionMain" android:label="Voice Interaction" |
Alan Viverette | 830960c | 2014-06-06 15:48:55 -0700 | [diff] [blame] | 8 | android:theme="@android:style/Theme.Material"> |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 9 | <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> |
Barnaby James | 0134fd8 | 2014-08-09 14:10:14 -0700 | [diff] [blame] | 15 | <activity android:name="SettingsActivity" |
| 16 | android:label="Voice Interaction Settings" |
| 17 | android:excludeFromRecents="true" |
| 18 | android:noHistory="true"> |
| 19 | <intent-filter> |
| 20 | <action android:name="android.intent.action.MAIN" /> |
| 21 | <category android:name="android.intent.category.DEFAULT" /> |
| 22 | </intent-filter> |
| 23 | </activity> |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 24 | <service android:name="MainInteractionService" |
Barnaby James | 0134fd8 | 2014-08-09 14:10:14 -0700 | [diff] [blame] | 25 | android:label="Test Voice Interaction Service" |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 26 | android:permission="android.permission.BIND_VOICE_INTERACTION" |
| 27 | android:process=":interactor"> |
Dianne Hackborn | 18f0d35 | 2014-04-25 17:06:18 -0700 | [diff] [blame] | 28 | <meta-data android:name="android.voice_interaction" |
| 29 | android:resource="@xml/interaction_service" /> |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 30 | <intent-filter> |
| 31 | <action android:name="android.service.voice.VoiceInteractionService" /> |
| 32 | </intent-filter> |
| 33 | </service> |
Dianne Hackborn | 18f0d35 | 2014-04-25 17:06:18 -0700 | [diff] [blame] | 34 | <service android:name="MainInteractionSessionService" |
| 35 | android:permission="android.permission.BIND_VOICE_INTERACTION" |
| 36 | android:process=":session"> |
| 37 | </service> |
Barnaby James | 0134fd8 | 2014-08-09 14:10:14 -0700 | [diff] [blame] | 38 | <service android:name="MainRecognitionService" |
| 39 | android:label="Test Voice Interaction Service"> |
| 40 | <intent-filter> |
| 41 | <action android:name="android.speech.RecognitionService" /> |
| 42 | <category android:name="android.intent.category.DEFAULT" /> |
| 43 | </intent-filter> |
| 44 | <meta-data android:name="android.speech" android:resource="@xml/recognition_service" /> |
| 45 | </service> |
Dianne Hackborn | 20d9474 | 2014-05-29 18:35:45 -0700 | [diff] [blame] | 46 | <activity android:name="TestInteractionActivity" android:label="Voice Interaction Target" |
Alan Viverette | 830960c | 2014-06-06 15:48:55 -0700 | [diff] [blame] | 47 | android:theme="@android:style/Theme.Material.Light.Voice"> |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 48 | <intent-filter> |
| 49 | <action android:name="android.intent.action.MAIN" /> |
| 50 | <category android:name="android.intent.category.DEFAULT" /> |
| 51 | <category android:name="android.intent.category.VOICE" /> |
| 52 | </intent-filter> |
| 53 | </activity> |
| 54 | </application> |
| 55 | </manifest> |