Ken Wakasa | 1a9ef01 | 2012-07-06 20:29:08 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2012 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ben Komalo | fde6149 | 2011-09-23 15:10:13 -0700 | [diff] [blame] | 18 | coreApp="true" |
Amith Yamasani | b248c2f | 2010-03-12 16:40:27 -0800 | [diff] [blame] | 19 | package="com.android.inputmethod.latin"> |
Jeff Hamilton | e11e283 | 2010-02-12 18:55:34 -0600 | [diff] [blame] | 20 | |
Tadashi G. Takaoka | d90e12a | 2013-02-08 18:53:34 -0800 | [diff] [blame] | 21 | <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" /> |
Ken Wakasa | 8573223 | 2012-07-31 15:59:56 +0900 | [diff] [blame] | 22 | |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 24 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.READ_USER_DICTIONARY" /> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" /> |
Amith Yamasani | b248c2f | 2010-03-12 16:40:27 -0800 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
Tadashi G. Takaoka | 1ffdaaf | 2013-02-26 17:56:54 +0900 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 30 | <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 31 | |
satok | c1da656 | 2012-01-12 14:13:09 +0900 | [diff] [blame] | 32 | <application android:label="@string/aosp_android_keyboard_ime_name" |
Jason Chen | c1bcb8e | 2012-10-12 14:19:40 -0700 | [diff] [blame] | 33 | android:icon="@mipmap/ic_ime_settings" |
Tadashi G. Takaoka | b8afd54 | 2012-07-31 14:44:16 +0900 | [diff] [blame] | 34 | android:killAfterRestore="false" |
| 35 | android:supportsRtl="true"> |
Jeff Hamilton | 43d34da | 2009-05-08 18:57:10 -0700 | [diff] [blame] | 36 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 37 | <service android:name="LatinIME" |
satok | c1da656 | 2012-01-12 14:13:09 +0900 | [diff] [blame] | 38 | android:label="@string/aosp_android_keyboard_ime_name" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 39 | android:permission="android.permission.BIND_INPUT_METHOD"> |
| 40 | <intent-filter> |
| 41 | <action android:name="android.view.InputMethod" /> |
| 42 | </intent-filter> |
| 43 | <meta-data android:name="android.view.im" android:resource="@xml/method" /> |
| 44 | </service> |
Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 45 | |
satok | c2b6a35 | 2011-08-08 19:16:20 +0900 | [diff] [blame] | 46 | <service android:name=".spellcheck.AndroidSpellCheckerService" |
Satoshi Kataoka | 3c8117c | 2013-03-22 14:53:03 +0900 | [diff] [blame] | 47 | android:label="@string/aosp_spell_checker_service_name" |
satok | c2b6a35 | 2011-08-08 19:16:20 +0900 | [diff] [blame] | 48 | android:permission="android.permission.BIND_TEXT_SERVICE"> |
| 49 | <intent-filter> |
| 50 | <action android:name="android.service.textservice.SpellCheckerService" /> |
| 51 | </intent-filter> |
| 52 | <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" /> |
| 53 | </service> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 54 | |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 55 | <activity android:name=".setup.SetupActivity" |
| 56 | android:label="@string/aosp_android_keyboard_ime_name" |
Tadashi G. Takaoka | 1ffdaaf | 2013-02-26 17:56:54 +0900 | [diff] [blame] | 57 | android:icon="@drawable/ic_setup_wizard"> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 58 | <intent-filter> |
| 59 | <action android:name="android.intent.action.MAIN" /> |
Tadashi G. Takaoka | 1ffdaaf | 2013-02-26 17:56:54 +0900 | [diff] [blame] | 60 | <category android:name="android.intent.category.LAUNCHER" /> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 61 | </intent-filter> |
| 62 | </activity> |
| 63 | |
Tadashi G. Takaoka | 1ffdaaf | 2013-02-26 17:56:54 +0900 | [diff] [blame] | 64 | <receiver android:name=".setup.LauncherIconVisibilityManager"> |
| 65 | <intent-filter> |
| 66 | <action android:name="android.intent.action.MY_PACKAGE_REPLACED" /> |
| 67 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 68 | <action android:name="android.intent.action.USER_INITIALIZE" /> |
| 69 | </intent-filter> |
| 70 | </receiver> |
| 71 | |
Satoshi Kataoka | 3c8117c | 2013-03-22 14:53:03 +0900 | [diff] [blame] | 72 | <activity android:name="SettingsActivity" android:label="@string/aosp_android_keyboard_ime_settings" |
Tadashi G. Takaoka | 55e5bdc | 2012-05-22 16:10:11 +0900 | [diff] [blame] | 73 | android:uiOptions="splitActionBarWhenNarrow"> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 74 | <intent-filter> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 75 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 76 | </intent-filter> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 77 | </activity> |
| 78 | |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 79 | <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity" |
Satoshi Kataoka | 3c8117c | 2013-03-22 14:53:03 +0900 | [diff] [blame] | 80 | android:label="@string/aosp_android_spell_checker_service_settings"> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 81 | <intent-filter> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 82 | <action android:name="android.intent.action.MAIN" /> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 83 | </intent-filter> |
| 84 | </activity> |
| 85 | |
Tadashi G. Takaoka | c206d04 | 2012-04-13 19:53:44 +0900 | [diff] [blame] | 86 | <activity android:name="DebugSettingsActivity" android:label="@string/english_ime_debug_settings"> |
satok | bf96661 | 2010-09-27 12:55:21 +0900 | [diff] [blame] | 87 | <intent-filter> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 88 | <action android:name="android.intent.action.MAIN" /> |
satok | bf96661 | 2010-09-27 12:55:21 +0900 | [diff] [blame] | 89 | </intent-filter> |
| 90 | </activity> |
| 91 | |
satok | ea9098c | 2011-05-26 14:10:00 +0900 | [diff] [blame] | 92 | <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true"> |
| 93 | <intent-filter> |
| 94 | <action android:name="android.text.style.SUGGESTION_PICKED" /> |
| 95 | </intent-filter> |
| 96 | </receiver> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 97 | |
Jean Chalard | 76d5f51 | 2013-03-28 18:59:19 +0900 | [diff] [blame] | 98 | <receiver android:name=".DictionaryPackInstallBroadcastReceiver"> |
| 99 | <intent-filter> |
| 100 | <action android:name="com.android.inputmethod.dictionarypack.UNKNOWN_CLIENT" /> |
| 101 | </intent-filter> |
| 102 | </receiver> |
| 103 | |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 104 | <provider android:name="com.android.inputmethod.dictionarypack.DictionaryProvider" |
| 105 | android:grantUriPermissions="true" |
| 106 | android:exported="false" |
| 107 | android:authorities="@string/authority" |
| 108 | android:multiprocess="false" |
| 109 | android:label="@string/dictionary_provider_name"> |
| 110 | </provider> |
| 111 | |
| 112 | <service android:name="com.android.inputmethod.dictionarypack.DictionaryService" |
| 113 | android:label="@string/dictionary_service_name"> |
| 114 | </service> |
| 115 | |
| 116 | <receiver android:name="com.android.inputmethod.dictionarypack.EventHandler"> |
| 117 | <intent-filter> |
| 118 | <action android:name="android.intent.action.DOWNLOAD_COMPLETE" /> |
| 119 | <action android:name="android.intent.action.DATE_CHANGED" /> |
| 120 | <action android:name="com.android.inputmethod.latin.dictionarypack.UPDATE_NOW" /> |
| 121 | </intent-filter> |
| 122 | </receiver> |
| 123 | |
| 124 | <activity android:name="com.android.inputmethod.dictionarypack.DictionarySettingsActivity" |
| 125 | android:label="@string/dictionary_settings_title" |
| 126 | android:icon="@mipmap/ic_ime_settings" |
| 127 | android:theme="@android:style/Theme.Holo" |
| 128 | android:uiOptions="splitActionBarWhenNarrow"> |
| 129 | <intent-filter> |
| 130 | <action android:name="android.intent.action.MAIN"/> |
| 131 | </intent-filter> |
| 132 | </activity> |
| 133 | |
| 134 | <activity android:name="com.android.inputmethod.dictionarypack.DownloadOverMeteredDialog" |
| 135 | android:label="@string/dictionary_install_over_metered_network_prompt" |
| 136 | android:icon="@mipmap/ic_ime_settings" |
| 137 | android:theme="@android:style/Theme.Holo"> |
| 138 | <intent-filter> |
| 139 | <action android:name="android.intent.action.MAIN"/> |
| 140 | </intent-filter> |
| 141 | </activity> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 142 | </application> |
| 143 | </manifest> |