Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Amith Yamasani | b248c2f | 2010-03-12 16:40:27 -0800 | [diff] [blame] | 2 | package="com.android.inputmethod.latin"> |
Jeff Hamilton | e11e283 | 2010-02-12 18:55:34 -0600 | [diff] [blame] | 3 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 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" /> |
Valentin Kravtsov | c2a862a | 2010-02-01 16:51:47 +0000 | [diff] [blame] | 7 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Amith Yamasani | b248c2f | 2010-03-12 16:40:27 -0800 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 9 | |
Amith Yamasani | ff74ee5 | 2009-07-05 13:17:13 -0700 | [diff] [blame] | 10 | <application android:label="@string/english_ime_name" |
Christopher Tate | f265392 | 2009-09-01 21:16:19 -0700 | [diff] [blame] | 11 | android:backupAgent="LatinIMEBackupAgent" |
| 12 | android:killAfterRestore="false"> |
Jeff Hamilton | 43d34da | 2009-05-08 18:57:10 -0700 | [diff] [blame] | 13 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 14 | <service android:name="LatinIME" |
| 15 | android:label="@string/english_ime_name" |
| 16 | android:permission="android.permission.BIND_INPUT_METHOD"> |
| 17 | <intent-filter> |
| 18 | <action android:name="android.view.InputMethod" /> |
| 19 | </intent-filter> |
| 20 | <meta-data android:name="android.view.im" android:resource="@xml/method" /> |
| 21 | </service> |
Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 22 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 23 | <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings"> |
| 24 | <intent-filter> |
| 25 | <action android:name="android.intent.action.MAIN"/> |
| 26 | </intent-filter> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 27 | </activity> |
| 28 | |
satok | bf96661 | 2010-09-27 12:55:21 +0900 | [diff] [blame^] | 29 | <activity android:name="LatinIMEDebugSettings" android:label="@string/english_ime_debug_settings"> |
| 30 | <intent-filter> |
| 31 | <action android:name="android.intent.action.MAIN"/> |
| 32 | </intent-filter> |
| 33 | </activity> |
| 34 | |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 35 | <activity android:name="InputLanguageSelection" |
| 36 | android:label="@string/language_selection_title"> |
| 37 | <intent-filter> |
| 38 | <action android:name="android.intent.action.MAIN"/> |
Amith Yamasani | 07b1603 | 2010-03-09 12:46:57 -0800 | [diff] [blame] | 39 | <action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/> |
| 40 | <category android:name="android.intent.category.DEFAULT" /> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 41 | </intent-filter> |
Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 42 | </activity> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 43 | </application> |
| 44 | </manifest> |