blob: 5f4791d1feb42cf98c77988141fafb46e60294b9 [file] [log] [blame]
Doug Zongker4fc01932010-01-27 14:32:42 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ken Wakasaa25324f2010-05-17 17:46:14 +09002 package="com.google.android.inputmethod.latin">
Jeff Hamiltone11e2832010-02-12 18:55:34 -06003
Ken Wakasa07cab722010-04-20 01:24:57 +09004 <!-- Do not override the default LatinIME for now -->
5 <!-- original-package android:name="com.android.inputmethod.latin" / -->
Jeff Hamiltone11e2832010-02-12 18:55:34 -06006
The Android Open Source Project923bf412009-03-13 15:11:42 -07007 <uses-permission android:name="android.permission.VIBRATE"/>
8 <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
9 <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
Valentin Kravtsovc2a862a2010-02-01 16:51:47 +000010 <uses-permission android:name="android.permission.RECORD_AUDIO" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -080011 <uses-permission android:name="android.permission.READ_CONTACTS" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070012
Amith Yamasaniff74ee52009-07-05 13:17:13 -070013 <application android:label="@string/english_ime_name"
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090014 android:backupAgent="com.android.inputmethod.latin.LatinIMEBackupAgent"
Christopher Tatef2653922009-09-01 21:16:19 -070015 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070016
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090017 <service android:name="com.android.inputmethod.latin.LatinIME"
The Android Open Source Project923bf412009-03-13 15:11:42 -070018 android:label="@string/english_ime_name"
19 android:permission="android.permission.BIND_INPUT_METHOD">
20 <intent-filter>
21 <action android:name="android.view.InputMethod" />
22 </intent-filter>
23 <meta-data android:name="android.view.im" android:resource="@xml/method" />
24 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080025
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090026 <activity android:name="com.android.inputmethod.latin.LatinIMESettings" android:label="@string/english_ime_settings">
The Android Open Source Project923bf412009-03-13 15:11:42 -070027 <intent-filter>
28 <action android:name="android.intent.action.MAIN"/>
29 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070030 </activity>
31
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090032 <activity android:name="com.android.inputmethod.latin.InputLanguageSelection"
Amith Yamasani36fcf252009-10-12 13:48:35 -070033 android:label="@string/language_selection_title">
34 <intent-filter>
35 <action android:name="android.intent.action.MAIN"/>
Amith Yamasani07b16032010-03-09 12:46:57 -080036 <action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
37 <category android:name="android.intent.category.DEFAULT" />
Amith Yamasani36fcf252009-10-12 13:48:35 -070038 </intent-filter>
Doug Zongker4fc01932010-01-27 14:32:42 -080039 </activity>
The Android Open Source Project923bf412009-03-13 15:11:42 -070040 </application>
41</manifest>