Sandeep Siddhartha | 2296895 | 2014-06-10 12:32:53 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.test.voiceenrollment"> |
| 3 | |
Sandeep Siddhartha | b585ac5 | 2014-10-06 16:46:55 -0700 | [diff] [blame] | 4 | <uses-permission android:name="android.permission.MANAGE_VOICE_KEYPHRASES" /> |
Sandeep Siddhartha | 2296895 | 2014-06-10 12:32:53 -0700 | [diff] [blame] | 5 | <application |
| 6 | android:permission="android.permission.MANAGE_VOICE_KEYPHRASES"> |
Sandeep Siddhartha | b585ac5 | 2014-10-06 16:46:55 -0700 | [diff] [blame] | 7 | <activity |
| 8 | android:name="TestEnrollmentActivity" |
| 9 | android:label="Voice Enrollment Application" |
| 10 | android:theme="@android:style/Theme.Material.Light.Voice"> |
Sandeep Siddhartha | 2296895 | 2014-06-10 12:32:53 -0700 | [diff] [blame] | 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> |
Sandeep Siddhartha | b585ac5 | 2014-10-06 16:46:55 -0700 | [diff] [blame] | 16 | <meta-data |
| 17 | android:name="android.voice_enrollment" |
Sandeep Siddhartha | 2296895 | 2014-06-10 12:32:53 -0700 | [diff] [blame] | 18 | android:resource="@xml/enrollment_application"/> |
| 19 | </application> |
| 20 | </manifest> |