2010-01-27 14:32:42 -08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-09-23 15:10:13 -07:00
|
|
|
coreApp="true"
|
2010-03-12 16:40:27 -08:00
|
|
|
package="com.android.inputmethod.latin">
|
2010-02-12 18:55:34 -06:00
|
|
|
|
2009-03-13 15:11:42 -07:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
2011-01-25 12:13:35 +09:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2009-03-13 15:11:42 -07:00
|
|
|
<uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
|
2010-03-12 16:40:27 -08:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2009-03-13 15:11:42 -07:00
|
|
|
|
2012-01-12 14:13:09 +09:00
|
|
|
<application android:label="@string/aosp_android_keyboard_ime_name"
|
2011-08-31 16:09:01 +09:00
|
|
|
android:icon="@drawable/ic_ime_settings"
|
2010-12-09 21:06:26 +09:00
|
|
|
android:backupAgent="BackupAgent"
|
2009-09-01 21:16:19 -07:00
|
|
|
android:killAfterRestore="false">
|
2009-05-08 18:57:10 -07:00
|
|
|
|
2009-03-13 15:11:42 -07:00
|
|
|
<service android:name="LatinIME"
|
2012-01-12 14:13:09 +09:00
|
|
|
android:label="@string/aosp_android_keyboard_ime_name"
|
2009-03-13 15:11:42 -07:00
|
|
|
android:permission="android.permission.BIND_INPUT_METHOD">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.view.InputMethod" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.view.im" android:resource="@xml/method" />
|
|
|
|
</service>
|
2010-01-27 14:32:42 -08:00
|
|
|
|
2011-08-08 19:16:20 +09:00
|
|
|
<service android:name=".spellcheck.AndroidSpellCheckerService"
|
|
|
|
android:label="@string/spell_checker_service_name"
|
|
|
|
android:permission="android.permission.BIND_TEXT_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.textservice.SpellCheckerService" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" />
|
|
|
|
</service>
|
2011-08-12 17:18:32 +09:00
|
|
|
|
2011-07-11 07:47:09 +09:00
|
|
|
<activity android:name="Settings" android:label="@string/english_ime_settings">
|
2009-03-13 15:11:42 -07:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
2009-10-12 13:48:35 -07:00
|
|
|
</activity>
|
2011-08-12 17:18:32 +09:00
|
|
|
|
|
|
|
<activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity"
|
|
|
|
android:label="@string/android_spell_checker_settings">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2009-10-12 13:48:35 -07:00
|
|
|
|
2010-12-09 21:06:26 +09:00
|
|
|
<activity android:name="DebugSettings" android:label="@string/english_ime_debug_settings">
|
2010-09-27 12:55:21 +09:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2011-04-21 15:35:07 +09:00
|
|
|
<activity android:name="com.android.inputmethod.deprecated.languageswitcher.InputLanguageSelection"
|
2009-10-12 13:48:35 -07:00
|
|
|
android:label="@string/language_selection_title">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2010-03-09 12:46:57 -08:00
|
|
|
<action android:name="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2009-10-12 13:48:35 -07:00
|
|
|
</intent-filter>
|
2010-01-27 14:32:42 -08:00
|
|
|
</activity>
|
2011-05-26 14:10:00 +09:00
|
|
|
|
|
|
|
<receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.text.style.SUGGESTION_PICKED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2009-03-13 15:11:42 -07:00
|
|
|
</application>
|
|
|
|
</manifest>
|