2016-01-25 10:33:11 -08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.test.soundtrigger">
|
2016-06-30 22:05:51 -07:00
|
|
|
<uses-permission android:name="android.permission.CAPTURE_AUDIO_HOTWORD" />
|
2016-01-25 10:33:11 -08:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_SOUND_TRIGGER" />
|
2016-06-30 22:05:51 -07:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2016-03-28 13:58:07 -07:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2016-02-09 12:15:19 -08:00
|
|
|
<application>
|
2016-01-25 10:33:11 -08:00
|
|
|
<activity
|
2016-06-30 22:05:51 -07:00
|
|
|
android:name=".SoundTriggerTestActivity"
|
2016-01-25 10:33:11 -08:00
|
|
|
android:label="SoundTrigger Test Application"
|
2016-02-21 18:10:28 -08:00
|
|
|
android:screenOrientation="portrait"
|
2016-02-09 12:15:19 -08:00
|
|
|
android:theme="@android:style/Theme.Material">
|
|
|
|
<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>
|
2016-01-25 10:33:11 -08:00
|
|
|
</activity>
|
2016-06-30 22:05:51 -07:00
|
|
|
<service
|
|
|
|
android:name=".SoundTriggerTestService"
|
|
|
|
android:stopWithTask="false"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.android.intent.action.MANAGE_SOUND_TRIGGER" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2016-01-25 10:33:11 -08:00
|
|
|
</application>
|
|
|
|
</manifest>
|