2010-01-27 22:32:42 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-03-13 00:40:27 +00:00
|
|
|
package="com.android.inputmethod.latin">
|
2010-02-13 00:55:34 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2011-01-25 03:13:35 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2009-03-13 22:11:42 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
|
2010-02-01 16:51:47 +00:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2010-03-13 00:40:27 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2009-07-05 20:17:13 +00:00
|
|
|
<application android:label="@string/english_ime_name"
|
2010-12-09 12:06:26 +00:00
|
|
|
android:backupAgent="BackupAgent"
|
2009-09-02 04:16:19 +00:00
|
|
|
android:killAfterRestore="false">
|
2009-05-09 01:57:10 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
<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>
|
2010-01-27 22:32:42 +00:00
|
|
|
|
2010-12-09 12:06:26 +00:00
|
|
|
<activity android:name="Settings" android:label="@string/english_ime_settings">
|
2009-03-13 22:11:42 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
2009-10-12 20:48:35 +00:00
|
|
|
</activity>
|
|
|
|
|
2010-12-09 12:06:26 +00:00
|
|
|
<activity android:name="DebugSettings" android:label="@string/english_ime_debug_settings">
|
2010-09-27 03:55:21 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2011-04-21 06:35:07 +00:00
|
|
|
<activity android:name="com.android.inputmethod.deprecated.languageswitcher.InputLanguageSelection"
|
2009-10-12 20:48:35 +00:00
|
|
|
android:label="@string/language_selection_title">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2010-03-09 20:46:57 +00:00
|
|
|
<action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2009-10-12 20:48:35 +00:00
|
|
|
</intent-filter>
|
2010-01-27 22:32:42 +00:00
|
|
|
</activity>
|
2009-03-13 22:11:42 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|