blob: df54323d16ebc2c298c790307b3480535666acf9 [file] [log] [blame]
Doug Zongker4fc01932010-01-27 14:32:42 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ken Wakasa1cf0ce72010-04-07 18:37:36 +09002 package="com.android.inputmethod.latin2">
Jeff Hamiltone11e2832010-02-12 18:55:34 -06003
4 <original-package android:name="com.android.inputmethod.latin" />
5
The Android Open Source Project923bf412009-03-13 15:11:42 -07006 <uses-permission android:name="android.permission.VIBRATE"/>
7 <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
8 <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
Valentin Kravtsovc2a862a2010-02-01 16:51:47 +00009 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -080010 <uses-permission android:name="android.permission.READ_CONTACTS" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070011
Amith Yamasaniff74ee52009-07-05 13:17:13 -070012 <application android:label="@string/english_ime_name"
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090013 android:backupAgent="com.android.inputmethod.latin.LatinIMEBackupAgent"
Christopher Tatef2653922009-09-01 21:16:19 -070014 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070015
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090016 <service android:name="com.android.inputmethod.latin.LatinIME"
The Android Open Source Project923bf412009-03-13 15:11:42 -070017 android:label="@string/english_ime_name"
18 android:permission="android.permission.BIND_INPUT_METHOD">
19 <intent-filter>
20 <action android:name="android.view.InputMethod" />
21 </intent-filter>
22 <meta-data android:name="android.view.im" android:resource="@xml/method" />
23 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080024
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090025 <activity android:name="com.android.inputmethod.latin.LatinIMESettings" android:label="@string/english_ime_settings">
The Android Open Source Project923bf412009-03-13 15:11:42 -070026 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/>
28 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070029 </activity>
30
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090031 <activity android:name="com.android.inputmethod.latin.InputLanguageSelection"
Amith Yamasani36fcf252009-10-12 13:48:35 -070032 android:label="@string/language_selection_title">
33 <intent-filter>
34 <action android:name="android.intent.action.MAIN"/>
Amith Yamasani07b16032010-03-09 12:46:57 -080035 <action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
36 <category android:name="android.intent.category.DEFAULT" />
Amith Yamasani36fcf252009-10-12 13:48:35 -070037 </intent-filter>
Doug Zongker4fc01932010-01-27 14:32:42 -080038 </activity>
The Android Open Source Project923bf412009-03-13 15:11:42 -070039 </application>
40</manifest>