The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 1 | <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" /> |
Christopher Tate | 9a66cd8 | 2009-08-13 14:32:54 -0700 | [diff] [blame^] | 7 | <uses-permission android:name="android.permission.BACKUP_DATA" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 8 | |
Amith Yamasani | ff74ee5 | 2009-07-05 13:17:13 -0700 | [diff] [blame] | 9 | <application android:label="@string/english_ime_name" |
| 10 | android:backupAgent="LatinIMEBackupAgent"> |
Jeff Hamilton | 43d34da | 2009-05-08 18:57:10 -0700 | [diff] [blame] | 11 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 12 | <service android:name="LatinIME" |
| 13 | android:label="@string/english_ime_name" |
| 14 | android:permission="android.permission.BIND_INPUT_METHOD"> |
| 15 | <intent-filter> |
| 16 | <action android:name="android.view.InputMethod" /> |
| 17 | </intent-filter> |
| 18 | <meta-data android:name="android.view.im" android:resource="@xml/method" /> |
| 19 | </service> |
| 20 | |
| 21 | <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings"> |
| 22 | <intent-filter> |
| 23 | <action android:name="android.intent.action.MAIN"/> |
| 24 | </intent-filter> |
| 25 | </activity> |
| 26 | </application> |
| 27 | </manifest> |