blob: 46f6ff541b4d730a1a44ba8f8968be7c3c792aae [file] [log] [blame]
Sandeep Siddhartha22968952014-06-10 12:32:53 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.test.voiceenrollment">
3
Sandeep Siddharthab585ac52014-10-06 16:46:55 -07004 <uses-permission android:name="android.permission.MANAGE_VOICE_KEYPHRASES" />
Sandeep Siddhartha22968952014-06-10 12:32:53 -07005 <application
6 android:permission="android.permission.MANAGE_VOICE_KEYPHRASES">
Sandeep Siddharthab585ac52014-10-06 16:46:55 -07007 <activity
8 android:name="TestEnrollmentActivity"
9 android:label="Voice Enrollment Application"
10 android:theme="@android:style/Theme.Material.Light.Voice">
Sandeep Siddhartha22968952014-06-10 12:32:53 -070011 <intent-filter>
12 <action android:name="com.android.intent.action.MANAGE_VOICE_KEYPHRASES" />
13 <category android:name="android.intent.category.DEFAULT" />
14 </intent-filter>
15 </activity>
Sandeep Siddharthab585ac52014-10-06 16:46:55 -070016 <meta-data
17 android:name="android.voice_enrollment"
Sandeep Siddhartha22968952014-06-10 12:32:53 -070018 android:resource="@xml/enrollment_application"/>
19 </application>
20</manifest>