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