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" /> |
| 7 | |
| 8 | <application android:label="@string/english_ime_name"> |
| 9 | <service android:name="LatinIME" |
| 10 | android:label="@string/english_ime_name" |
| 11 | android:permission="android.permission.BIND_INPUT_METHOD"> |
| 12 | <intent-filter> |
| 13 | <action android:name="android.view.InputMethod" /> |
| 14 | </intent-filter> |
| 15 | <meta-data android:name="android.view.im" android:resource="@xml/method" /> |
| 16 | </service> |
| 17 | |
| 18 | <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings"> |
| 19 | <intent-filter> |
| 20 | <action android:name="android.intent.action.MAIN"/> |
| 21 | </intent-filter> |
| 22 | </activity> |
| 23 | </application> |
| 24 | </manifest> |