Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.test.soundtrigger"> |
Chris Thornton | dfa7c3b | 2016-06-30 22:05:51 -0700 | [diff] [blame] | 3 | <uses-permission android:name="android.permission.CAPTURE_AUDIO_HOTWORD" /> |
Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 4 | <uses-permission android:name="android.permission.MANAGE_SOUND_TRIGGER" /> |
Chris Thornton | dfa7c3b | 2016-06-30 22:05:51 -0700 | [diff] [blame] | 5 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Arunesh Mishra | 73db9c2 | 2016-03-28 13:58:07 -0700 | [diff] [blame] | 6 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Arunesh Mishra | 3fff7f5 | 2016-02-09 12:15:19 -0800 | [diff] [blame] | 7 | <application> |
Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 8 | <activity |
Chris Thornton | dfa7c3b | 2016-06-30 22:05:51 -0700 | [diff] [blame] | 9 | android:name=".SoundTriggerTestActivity" |
Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 10 | android:label="SoundTrigger Test Application" |
Arunesh Mishra | 2d1de78 | 2016-02-21 18:10:28 -0800 | [diff] [blame] | 11 | android:screenOrientation="portrait" |
Arunesh Mishra | 3fff7f5 | 2016-02-09 12:15:19 -0800 | [diff] [blame] | 12 | android:theme="@android:style/Theme.Material"> |
Arunesh Mishra | 3fff7f5 | 2016-02-09 12:15:19 -0800 | [diff] [blame] | 13 | <intent-filter> |
| 14 | <action android:name="android.intent.action.MAIN" /> |
| 15 | <category android:name="android.intent.category.DEFAULT" /> |
| 16 | <category android:name="android.intent.category.LAUNCHER" /> |
| 17 | </intent-filter> |
Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 18 | </activity> |
Chris Thornton | dfa7c3b | 2016-06-30 22:05:51 -0700 | [diff] [blame] | 19 | <service |
| 20 | android:name=".SoundTriggerTestService" |
| 21 | android:stopWithTask="false" |
| 22 | android:exported="true"> |
| 23 | <intent-filter> |
| 24 | <action android:name="com.android.intent.action.MANAGE_SOUND_TRIGGER" /> |
| 25 | </intent-filter> |
| 26 | </service> |
Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 27 | </application> |
| 28 | </manifest> |