blob: 91a55379bbae04df9bed3412d08d8d2f86a0adf5 [file] [log] [blame]
The Android Open Source Project923bf412009-03-13 15:11:42 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.inputmethod.latin"
3 android:sharedUserId="android.uid.shared">
4 <uses-permission android:name="android.permission.VIBRATE"/>
5 <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
6 <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
7
Amith Yamasaniff74ee52009-07-05 13:17:13 -07008 <application android:label="@string/english_ime_name"
9 android:backupAgent="LatinIMEBackupAgent">
Mitsuru Oshima6bfb6d02009-05-13 22:11:22 -070010<!-- TODO: enable before donut release
Jeff Hamilton43d34da2009-05-08 18:57:10 -070011 <supports-density android:density="120" />
12 <supports-density android:density="160" />
13 <supports-density android:density="240" />
Mitsuru Oshima6bfb6d02009-05-13 22:11:22 -070014-->
Jeff Hamilton43d34da2009-05-08 18:57:10 -070015
The Android Open Source Project923bf412009-03-13 15:11:42 -070016 <service android:name="LatinIME"
17 android:label="@string/english_ime_name"
18 android:permission="android.permission.BIND_INPUT_METHOD">
19 <intent-filter>
20 <action android:name="android.view.InputMethod" />
21 </intent-filter>
22 <meta-data android:name="android.view.im" android:resource="@xml/method" />
23 </service>
24
25 <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings">
26 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/>
28 </intent-filter>
29 </activity>
30 </application>
31</manifest>