| 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"> |
| 3 | |
| 4 | <uses-permission android:name="android.permission.MANAGE_SOUND_TRIGGER" /> |
| Arunesh Mishra | 2d1de78 | 2016-02-21 18:10:28 -0800 | [diff] [blame] | 5 | <uses-permission android:name="android.permission.WAKE_LOCk" /> |
| Arunesh Mishra | 3fff7f5 | 2016-02-09 12:15:19 -0800 | [diff] [blame] | 6 | <application> |
| Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 7 | <activity |
| 8 | android:name="TestSoundTriggerActivity" |
| 9 | android:label="SoundTrigger Test Application" |
| Arunesh Mishra | 2d1de78 | 2016-02-21 18:10:28 -0800 | [diff] [blame] | 10 | android:screenOrientation="portrait" |
| Arunesh Mishra | 3fff7f5 | 2016-02-09 12:15:19 -0800 | [diff] [blame] | 11 | android:theme="@android:style/Theme.Material"> |
| 12 | <!-- |
| Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 13 | <intent-filter> |
| 14 | <action android:name="com.android.intent.action.MANAGE_SOUND_TRIGGER" /> |
| 15 | <category android:name="android.intent.category.DEFAULT" /> |
| 16 | </intent-filter> |
| Arunesh Mishra | 3fff7f5 | 2016-02-09 12:15:19 -0800 | [diff] [blame] | 17 | --> |
| 18 | <intent-filter> |
| 19 | <action android:name="android.intent.action.MAIN" /> |
| 20 | <category android:name="android.intent.category.DEFAULT" /> |
| 21 | <category android:name="android.intent.category.LAUNCHER" /> |
| 22 | </intent-filter> |
| Arunesh Mishra | a772e5f | 2016-01-25 10:33:11 -0800 | [diff] [blame] | 23 | </activity> |
| 24 | </application> |
| 25 | </manifest> |