1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.android.test.voiceenrollment"> 3 4 <uses-permission android:name="android.permission.MANAGE_VOICE_KEYPHRASES" /> 5 <application 6 android:permission="android.permission.MANAGE_VOICE_KEYPHRASES"> 7 <activity 8 android:name="TestEnrollmentActivity" 9 android:label="Voice Enrollment Application" 10 android:theme="@android:style/Theme.Material.Light.Voice"> 11 <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> 16 <meta-data 17 android:name="android.voice_enrollment" 18 android:resource="@xml/enrollment_application"/> 19 </application> 20</manifest> 21