blob: 2baae54fba34155678aab6d6ab996596c03fb6fd [file] [log] [blame]
Doug Zongker4fc01932010-01-27 14:32:42 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ben Komalofde61492011-09-23 15:10:13 -07002 coreApp="true"
Amith Yamasanib248c2f2010-03-12 16:40:27 -08003 package="com.android.inputmethod.latin">
Jeff Hamiltone11e2832010-02-12 18:55:34 -06004
The Android Open Source Project923bf412009-03-13 15:11:42 -07005 <uses-permission android:name="android.permission.VIBRATE"/>
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +09006 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
The Android Open Source Project923bf412009-03-13 15:11:42 -07007 <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 Wakasa8ab24772011-08-31 16:09:01 +090013 android:icon="@drawable/ic_ime_settings"
Tadashi G. Takaoka9502cc12010-12-09 21:06:26 +090014 android:backupAgent="BackupAgent"
Christopher Tatef2653922009-09-01 21:16:19 -070015 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070016
The Android Open Source Project923bf412009-03-13 15:11:42 -070017 <service android:name="LatinIME"
18 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
satokc2b6a352011-08-08 19:16:20 +090026 <service android:name=".spellcheck.AndroidSpellCheckerService"
27 android:label="@string/spell_checker_service_name"
28 android:permission="android.permission.BIND_TEXT_SERVICE">
29 <intent-filter>
30 <action android:name="android.service.textservice.SpellCheckerService" />
31 </intent-filter>
32 <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" />
33 </service>
Jean Chalard31fd54c2011-08-12 17:18:32 +090034
satok4a0c3432011-07-11 07:47:09 +090035 <activity android:name="Settings" android:label="@string/english_ime_settings">
The Android Open Source Project923bf412009-03-13 15:11:42 -070036 <intent-filter>
37 <action android:name="android.intent.action.MAIN"/>
38 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070039 </activity>
40
Jean Chalard31fd54c2011-08-12 17:18:32 +090041 <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity"
42 android:label="@string/android_spell_checker_settings">
43 <intent-filter>
44 <action android:name="android.intent.action.MAIN"/>
45 </intent-filter>
46 </activity>
47
Tadashi G. Takaoka9502cc12010-12-09 21:06:26 +090048 <activity android:name="DebugSettings" android:label="@string/english_ime_debug_settings">
satokbf966612010-09-27 12:55:21 +090049 <intent-filter>
50 <action android:name="android.intent.action.MAIN"/>
51 </intent-filter>
52 </activity>
53
satok15a0ba62011-04-21 15:35:07 +090054 <activity android:name="com.android.inputmethod.deprecated.languageswitcher.InputLanguageSelection"
Amith Yamasani36fcf252009-10-12 13:48:35 -070055 android:label="@string/language_selection_title">
56 <intent-filter>
57 <action android:name="android.intent.action.MAIN"/>
Amith Yamasani07b16032010-03-09 12:46:57 -080058 <action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
59 <category android:name="android.intent.category.DEFAULT" />
Amith Yamasani36fcf252009-10-12 13:48:35 -070060 </intent-filter>
Doug Zongker4fc01932010-01-27 14:32:42 -080061 </activity>
satokea9098c2011-05-26 14:10:00 +090062
63 <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true">
64 <intent-filter>
65 <action android:name="android.text.style.SUGGESTION_PICKED" />
66 </intent-filter>
67 </receiver>
The Android Open Source Project923bf412009-03-13 15:11:42 -070068 </application>
69</manifest>