blob: 06d852bb083b0ac1cc288accfcd68ef6c1afdaa5 [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" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -08008 <uses-permission android:name="android.permission.READ_CONTACTS" />
The Android Open Source Project923bf412009-03-13 15:11:42 -07009
satokc1da6562012-01-12 14:13:09 +090010 <application android:label="@string/aosp_android_keyboard_ime_name"
Ken Wakasa8ab24772011-08-31 16:09:01 +090011 android:icon="@drawable/ic_ime_settings"
Tadashi G. Takaoka9502cc12010-12-09 21:06:26 +090012 android:backupAgent="BackupAgent"
Christopher Tatef2653922009-09-01 21:16:19 -070013 android:killAfterRestore="false">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070014
The Android Open Source Project923bf412009-03-13 15:11:42 -070015 <service android:name="LatinIME"
satokc1da6562012-01-12 14:13:09 +090016 android:label="@string/aosp_android_keyboard_ime_name"
The Android Open Source Project923bf412009-03-13 15:11:42 -070017 android:permission="android.permission.BIND_INPUT_METHOD">
18 <intent-filter>
19 <action android:name="android.view.InputMethod" />
20 </intent-filter>
21 <meta-data android:name="android.view.im" android:resource="@xml/method" />
22 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080023
satokc2b6a352011-08-08 19:16:20 +090024 <service android:name=".spellcheck.AndroidSpellCheckerService"
25 android:label="@string/spell_checker_service_name"
26 android:permission="android.permission.BIND_TEXT_SERVICE">
27 <intent-filter>
28 <action android:name="android.service.textservice.SpellCheckerService" />
29 </intent-filter>
30 <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" />
31 </service>
Jean Chalard31fd54c2011-08-12 17:18:32 +090032
Tadashi G. Takaoka55e5bdc2012-05-22 16:10:11 +090033 <activity android:name="SettingsActivity" android:label="@string/english_ime_settings"
34 android:uiOptions="splitActionBarWhenNarrow">
The Android Open Source Project923bf412009-03-13 15:11:42 -070035 <intent-filter>
36 <action android:name="android.intent.action.MAIN"/>
37 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070038 </activity>
39
Jean Chalard31fd54c2011-08-12 17:18:32 +090040 <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity"
41 android:label="@string/android_spell_checker_settings">
42 <intent-filter>
43 <action android:name="android.intent.action.MAIN"/>
44 </intent-filter>
45 </activity>
46
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090047 <activity android:name="DebugSettingsActivity" android:label="@string/english_ime_debug_settings">
satokbf966612010-09-27 12:55:21 +090048 <intent-filter>
49 <action android:name="android.intent.action.MAIN"/>
50 </intent-filter>
51 </activity>
52
satokea9098c2011-05-26 14:10:00 +090053 <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true">
54 <intent-filter>
55 <action android:name="android.text.style.SUGGESTION_PICKED" />
56 </intent-filter>
57 </receiver>
The Android Open Source Project923bf412009-03-13 15:11:42 -070058 </application>
59</manifest>