blob: 9a41667af2573b6b1bded74472db9d08b5e40c32 [file] [log] [blame]
Doug Zongker4fc01932010-01-27 14:32:42 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ken Wakasaed5d6132010-05-21 01:28:33 +09002 package="com.google.android.inputmethod.latin"
Ken Wakasacf325a42010-06-07 23:26:27 +09003 android:versionCode="10"
4 android:versionName="0.18">
Jeff Hamiltone11e2832010-02-12 18:55:34 -06005
satok7f966162010-06-02 13:20:18 +09006 <uses-sdk android:minSdkVersion="8"></uses-sdk>
7
Ken Wakasabfd3b8b2010-05-18 11:01:46 +09008 <original-package android:name="com.android.inputmethod.latin" />
Jeff Hamiltone11e2832010-02-12 18:55:34 -06009
The Android Open Source Project923bf412009-03-13 15:11:42 -070010 <uses-permission android:name="android.permission.VIBRATE"/>
11 <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
12 <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
Valentin Kravtsovc2a862a2010-02-01 16:51:47 +000013 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -080014 <uses-permission android:name="android.permission.READ_CONTACTS" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070015
Amith Yamasaniff74ee52009-07-05 13:17:13 -070016 <application android:label="@string/english_ime_name"
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090017 android:backupAgent="com.android.inputmethod.latin.LatinIMEBackupAgent"
Christopher Tatef2653922009-09-01 21:16:19 -070018 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070019
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090020 <service android:name="com.android.inputmethod.latin.LatinIME"
The Android Open Source Project923bf412009-03-13 15:11:42 -070021 android:label="@string/english_ime_name"
22 android:permission="android.permission.BIND_INPUT_METHOD">
23 <intent-filter>
24 <action android:name="android.view.InputMethod" />
25 </intent-filter>
26 <meta-data android:name="android.view.im" android:resource="@xml/method" />
27 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080028
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090029 <activity android:name="com.android.inputmethod.latin.LatinIMESettings" android:label="@string/english_ime_settings">
The Android Open Source Project923bf412009-03-13 15:11:42 -070030 <intent-filter>
31 <action android:name="android.intent.action.MAIN"/>
32 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070033 </activity>
34
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090035 <activity android:name="com.android.inputmethod.latin.InputLanguageSelection"
Amith Yamasani36fcf252009-10-12 13:48:35 -070036 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>