blob: b1e5ec6f6a69ccc7a9787b360c145e2d1f514ca6 [file] [log] [blame]
Doug Zongker4fc01932010-01-27 14:32:42 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Amith Yamasanib248c2f2010-03-12 16:40:27 -08002 package="com.android.inputmethod.latin">
Jeff Hamiltone11e2832010-02-12 18:55:34 -06003
The Android Open Source Project923bf412009-03-13 15:11:42 -07004 <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 Kravtsovc2a862a2010-02-01 16:51:47 +00007 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -08008 <uses-permission android:name="android.permission.READ_CONTACTS" />
The Android Open Source Project923bf412009-03-13 15:11:42 -07009
Amith Yamasaniff74ee52009-07-05 13:17:13 -070010 <application android:label="@string/english_ime_name"
Christopher Tatef2653922009-09-01 21:16:19 -070011 android:backupAgent="LatinIMEBackupAgent"
12 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070013
The Android Open Source Project923bf412009-03-13 15:11:42 -070014 <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 Zongker4fc01932010-01-27 14:32:42 -080022
The Android Open Source Project923bf412009-03-13 15:11:42 -070023 <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 Yamasani36fcf252009-10-12 13:48:35 -070027 </activity>
28
satokbf966612010-09-27 12:55:21 +090029 <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 Yamasani36fcf252009-10-12 13:48:35 -070035 <activity android:name="InputLanguageSelection"
36 android:label="@string/language_selection_title">
37 <intent-filter>
38 <action android:name="android.intent.action.MAIN"/>
Amith Yamasani07b16032010-03-09 12:46:57 -080039 <action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
40 <category android:name="android.intent.category.DEFAULT" />
Amith Yamasani36fcf252009-10-12 13:48:35 -070041 </intent-filter>
Doug Zongker4fc01932010-01-27 14:32:42 -080042 </activity>
The Android Open Source Project923bf412009-03-13 15:11:42 -070043 </application>
44</manifest>