blob: d7059992f310e0a44fc38f74f6e04f4547babf6c [file] [log] [blame]
Doug Zongker4fc01932010-01-27 14:32:42 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
The Android Open Source Project923bf412009-03-13 15:11:42 -07002 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" />
Valentin Kravtsovc2a862a2010-02-01 16:51:47 +00007 <uses-permission android:name="android.permission.RECORD_AUDIO" />
The Android Open Source Project923bf412009-03-13 15:11:42 -07008
Amith Yamasaniff74ee52009-07-05 13:17:13 -07009 <application android:label="@string/english_ime_name"
Christopher Tatef2653922009-09-01 21:16:19 -070010 android:backupAgent="LatinIMEBackupAgent"
11 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070012
The Android Open Source Project923bf412009-03-13 15:11:42 -070013 <service android:name="LatinIME"
14 android:label="@string/english_ime_name"
15 android:permission="android.permission.BIND_INPUT_METHOD">
16 <intent-filter>
17 <action android:name="android.view.InputMethod" />
18 </intent-filter>
19 <meta-data android:name="android.view.im" android:resource="@xml/method" />
20 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080021
The Android Open Source Project923bf412009-03-13 15:11:42 -070022 <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings">
23 <intent-filter>
24 <action android:name="android.intent.action.MAIN"/>
25 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070026 </activity>
27
28 <activity android:name="InputLanguageSelection"
29 android:label="@string/language_selection_title">
30 <intent-filter>
31 <action android:name="android.intent.action.MAIN"/>
32 </intent-filter>
Doug Zongker4fc01932010-01-27 14:32:42 -080033 </activity>
The Android Open Source Project923bf412009-03-13 15:11:42 -070034 </application>
35</manifest>