c2a862a17b
Now there is a delay each time the voice recognition screen is opened, however, this is the correct behavior as microphone setup takes about 600ms. The previous implementation, although being fast, was not actually recording the first 1/2 second of user's speech. Change-Id: I8b8373a59658502f7451150ff4a4ffd1c8e83205
36 lines
1.6 KiB
XML
Executable file
36 lines
1.6 KiB
XML
Executable file
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.inputmethod.latin"
|
|
android:sharedUserId="android.uid.shared">
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
|
|
<uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
|
|
<uses-permission android:name="android.permission.BACKUP_DATA" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<application android:label="@string/english_ime_name"
|
|
android:backupAgent="LatinIMEBackupAgent"
|
|
android:killAfterRestore="false">
|
|
|
|
<service android:name="LatinIME"
|
|
android:label="@string/english_ime_name"
|
|
android:permission="android.permission.BIND_INPUT_METHOD">
|
|
<intent-filter>
|
|
<action android:name="android.view.InputMethod" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.view.im" android:resource="@xml/method" />
|
|
</service>
|
|
|
|
<activity android:name="LatinIMESettings" android:label="@string/english_ime_settings">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="InputLanguageSelection"
|
|
android:label="@string/language_selection_title">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|