2009-03-13 22:11:42 +00:00
|
|
|
<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" />
|
|
|
|
|
|
|
|
<application android:label="@string/english_ime_name">
|
2009-05-14 05:11:22 +00:00
|
|
|
<!-- TODO: enable before donut release
|
2009-05-09 01:57:10 +00:00
|
|
|
<supports-density android:density="120" />
|
|
|
|
<supports-density android:density="160" />
|
|
|
|
<supports-density android:density="240" />
|
2009-05-14 05:11:22 +00:00
|
|
|
-->
|
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>
|
|
|
|
|
|
|
|
<activity android:name="LatinIMESettings" android:label="@string/english_ime_settings">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|