summaryrefslogtreecommitdiff
path: root/tests/SoundTriggerTestApp/AndroidManifest.xml
diff options
context:
space:
mode:
author Arunesh Mishra <arunesh@google.com> 2016-01-25 10:33:11 -0800
committer Arunesh Mishra <arunesh@google.com> 2016-01-27 12:49:20 -0800
commita772e5fc062c8de48cb9c1d61755110f6b2e189b (patch)
tree3ee387dd521a8d8d6c3bbc8841542ca07a5078aa /tests/SoundTriggerTestApp/AndroidManifest.xml
parent5c461fc36d79d13b037ef928beb38fdb64e94057 (diff)
SoundTrigger API improvements.
This CL implements the SoundTrigger API improvements as given in b/22860713. Only the java-level parts are implemented in this CL. Key changes include: * Addition of a SoundTriggerManager/SoundTriggerDetector system API to manage the sound-trigger based sound models. * Addition of a SoundTriggerService service that manages all sound models including voice (keyphrase) and sound-trigger based models. * Includes logic to write sound-trigger based models to the database. * VoiceInteractionManager service now uses SoundTriggerService instead of SoundTriggerHelper. Bug: 22860713 Change-Id: I7b5c0ed80702527c4460372efeb5e542d3693a69
Diffstat (limited to 'tests/SoundTriggerTestApp/AndroidManifest.xml')
-rw-r--r--tests/SoundTriggerTestApp/AndroidManifest.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/SoundTriggerTestApp/AndroidManifest.xml b/tests/SoundTriggerTestApp/AndroidManifest.xml
new file mode 100644
index 000000000000..40619da156ee
--- /dev/null
+++ b/tests/SoundTriggerTestApp/AndroidManifest.xml
@@ -0,0 +1,17 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.test.soundtrigger">
+
+ <uses-permission android:name="android.permission.MANAGE_SOUND_TRIGGER" />
+ <application
+ android:permission="android.permission.MANAGE_SOUND_TRIGGER">
+ <activity
+ android:name="TestSoundTriggerActivity"
+ android:label="SoundTrigger Test Application"
+ android:theme="@android:style/Theme.Material.Light.Voice">
+ <intent-filter>
+ <action android:name="com.android.intent.action.MANAGE_SOUND_TRIGGER" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>