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 | |
Ken Wakasa | 2fa3693 | 2013-12-13 17:09:16 +0900 | [diff] [blame] | 21 | <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" /> |
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.ACCESS_NETWORK_STATE" /> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> |
Satoshi Kataoka | 492557e | 2013-05-01 15:52:08 +0900 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 26 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 27 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
| 28 | <uses-permission android:name="android.permission.READ_USER_DICTIONARY" /> |
| 29 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 30 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 31 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 32 | <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 33 | |
Tadashi G. Takaoka | 842e245 | 2013-04-26 14:01:41 +0900 | [diff] [blame] | 34 | <application android:label="@string/english_ime_name" |
Ken Wakasa | 2fa3693 | 2013-12-13 17:09:16 +0900 | [diff] [blame] | 35 | android:icon="@drawable/ic_launcher_keyboard" |
Tadashi G. Takaoka | b8afd54 | 2012-07-31 14:44:16 +0900 | [diff] [blame] | 36 | android:killAfterRestore="false" |
Jean Chalard | b11339b | 2014-01-08 16:52:04 +0900 | [diff] [blame] | 37 | android:supportsRtl="true" |
| 38 | android:allowBackup="true"> |
Jeff Hamilton | 43d34da | 2009-05-08 18:57:10 -0700 | [diff] [blame] | 39 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 40 | <service android:name="LatinIME" |
Tadashi G. Takaoka | 842e245 | 2013-04-26 14:01:41 +0900 | [diff] [blame] | 41 | android:label="@string/english_ime_name" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 42 | android:permission="android.permission.BIND_INPUT_METHOD"> |
| 43 | <intent-filter> |
| 44 | <action android:name="android.view.InputMethod" /> |
| 45 | </intent-filter> |
| 46 | <meta-data android:name="android.view.im" android:resource="@xml/method" /> |
| 47 | </service> |
Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 48 | |
satok | c2b6a35 | 2011-08-08 19:16:20 +0900 | [diff] [blame] | 49 | <service android:name=".spellcheck.AndroidSpellCheckerService" |
Tadashi G. Takaoka | 842e245 | 2013-04-26 14:01:41 +0900 | [diff] [blame] | 50 | android:label="@string/spell_checker_service_name" |
satok | c2b6a35 | 2011-08-08 19:16:20 +0900 | [diff] [blame] | 51 | android:permission="android.permission.BIND_TEXT_SERVICE"> |
| 52 | <intent-filter> |
| 53 | <action android:name="android.service.textservice.SpellCheckerService" /> |
| 54 | </intent-filter> |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 55 | <meta-data android:name="android.view.textservice.scs" |
| 56 | android:resource="@xml/spellchecker" /> |
satok | c2b6a35 | 2011-08-08 19:16:20 +0900 | [diff] [blame] | 57 | </service> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 58 | |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 59 | <activity android:name=".setup.SetupActivity" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 60 | android:theme="@style/platformActivityTheme" |
Tadashi G. Takaoka | 842e245 | 2013-04-26 14:01:41 +0900 | [diff] [blame] | 61 | android:label="@string/english_ime_name" |
Ken Wakasa | 2fa3693 | 2013-12-13 17:09:16 +0900 | [diff] [blame] | 62 | android:icon="@drawable/ic_launcher_keyboard" |
Tadashi G. Takaoka | 2b5c972 | 2013-05-09 13:14:18 +0900 | [diff] [blame] | 63 | android:launchMode="singleTask" |
| 64 | android:noHistory="true"> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 65 | <intent-filter> |
| 66 | <action android:name="android.intent.action.MAIN" /> |
Tadashi G. Takaoka | 1ffdaaf | 2013-02-26 17:56:54 +0900 | [diff] [blame] | 67 | <category android:name="android.intent.category.LAUNCHER" /> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 68 | </intent-filter> |
| 69 | </activity> |
| 70 | |
Tadashi G. Takaoka | 2b5c972 | 2013-05-09 13:14:18 +0900 | [diff] [blame] | 71 | <activity android:name=".setup.SetupWizardActivity" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 72 | android:theme="@style/platformActivityTheme" |
Tadashi G. Takaoka | 2b5c972 | 2013-05-09 13:14:18 +0900 | [diff] [blame] | 73 | android:label="@string/english_ime_name" |
| 74 | android:clearTaskOnLaunch="true"> |
| 75 | <intent-filter> |
| 76 | <action android:name="android.intent.action.MAIN" /> |
| 77 | </intent-filter> |
| 78 | </activity> |
| 79 | |
Tadashi G. Takaoka | 1ffdaaf | 2013-02-26 17:56:54 +0900 | [diff] [blame] | 80 | <receiver android:name=".setup.LauncherIconVisibilityManager"> |
| 81 | <intent-filter> |
| 82 | <action android:name="android.intent.action.MY_PACKAGE_REPLACED" /> |
| 83 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 84 | <action android:name="android.intent.action.USER_INITIALIZE" /> |
| 85 | </intent-filter> |
| 86 | </receiver> |
| 87 | |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 88 | <activity android:name=".settings.SettingsActivity" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 89 | android:theme="@style/platformActivityTheme" |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 90 | android:label="@string/english_ime_settings" |
| 91 | android:uiOptions="splitActionBarWhenNarrow"> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 92 | <intent-filter> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 93 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 94 | </intent-filter> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 95 | </activity> |
| 96 | |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 97 | <activity android:name=".spellcheck.SpellCheckerSettingsActivity" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 98 | android:theme="@style/platformActivityTheme" |
Tadashi G. Takaoka | 842e245 | 2013-04-26 14:01:41 +0900 | [diff] [blame] | 99 | android:label="@string/android_spell_checker_settings"> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 100 | <intent-filter> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 101 | <action android:name="android.intent.action.MAIN" /> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 102 | </intent-filter> |
| 103 | </activity> |
| 104 | |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 105 | <activity android:name=".settings.DebugSettingsActivity" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 106 | android:theme="@style/platformActivityTheme" |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 107 | android:label="@string/english_ime_debug_settings"> |
satok | bf96661 | 2010-09-27 12:55:21 +0900 | [diff] [blame] | 108 | <intent-filter> |
Tadashi G. Takaoka | cb0beaf | 2013-02-14 15:01:53 +0900 | [diff] [blame] | 109 | <action android:name="android.intent.action.MAIN" /> |
satok | bf96661 | 2010-09-27 12:55:21 +0900 | [diff] [blame] | 110 | </intent-filter> |
| 111 | </activity> |
| 112 | |
satok | ea9098c | 2011-05-26 14:10:00 +0900 | [diff] [blame] | 113 | <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true"> |
| 114 | <intent-filter> |
| 115 | <action android:name="android.text.style.SUGGESTION_PICKED" /> |
| 116 | </intent-filter> |
| 117 | </receiver> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 118 | |
Jean Chalard | b11339b | 2014-01-08 16:52:04 +0900 | [diff] [blame] | 119 | <receiver android:name=".personalization.DictionaryDecayBroadcastReciever" |
| 120 | android:exported="false"> |
Keisuke Kuroyanagi | f36a97a | 2013-10-02 18:06:08 +0900 | [diff] [blame] | 121 | <intent-filter> |
| 122 | <action android:name="com.android.inputmethod.latin.personalization.DICT_DECAY" /> |
| 123 | </intent-filter> |
| 124 | </receiver> |
| 125 | |
Jean Chalard | b11339b | 2014-01-08 16:52:04 +0900 | [diff] [blame] | 126 | <receiver android:name=".DictionaryPackInstallBroadcastReceiver" android:exported="false"> |
Jean Chalard | 76d5f51 | 2013-03-28 18:59:19 +0900 | [diff] [blame] | 127 | <intent-filter> |
Kurt Partridge | 2c1796c | 2013-06-10 08:14:06 -0700 | [diff] [blame] | 128 | <action android:name="com.android.inputmethod.dictionarypack.aosp.UNKNOWN_CLIENT" /> |
Jean Chalard | 76d5f51 | 2013-03-28 18:59:19 +0900 | [diff] [blame] | 129 | </intent-filter> |
| 130 | </receiver> |
| 131 | |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 132 | <provider android:name="com.android.inputmethod.dictionarypack.DictionaryProvider" |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 133 | android:grantUriPermissions="true" |
| 134 | android:exported="false" |
| 135 | android:authorities="@string/authority" |
| 136 | android:multiprocess="false" |
| 137 | android:label="@string/dictionary_provider_name"> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 138 | </provider> |
| 139 | |
| 140 | <service android:name="com.android.inputmethod.dictionarypack.DictionaryService" |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 141 | android:label="@string/dictionary_service_name"> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 142 | </service> |
| 143 | |
| 144 | <receiver android:name="com.android.inputmethod.dictionarypack.EventHandler"> |
| 145 | <intent-filter> |
| 146 | <action android:name="android.intent.action.DOWNLOAD_COMPLETE" /> |
| 147 | <action android:name="android.intent.action.DATE_CHANGED" /> |
Kurt Partridge | 2c1796c | 2013-06-10 08:14:06 -0700 | [diff] [blame] | 148 | <action android:name="com.android.inputmethod.dictionarypack.aosp.UPDATE_NOW" /> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 149 | </intent-filter> |
| 150 | </receiver> |
| 151 | |
| 152 | <activity android:name="com.android.inputmethod.dictionarypack.DictionarySettingsActivity" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 153 | android:theme="@style/platformActivityTheme" |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 154 | android:label="@string/dictionary_settings_title" |
Ken Wakasa | a7d2fc6 | 2013-07-22 12:43:37 +0900 | [diff] [blame] | 155 | android:uiOptions="splitActionBarWhenNarrow"> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 156 | <intent-filter> |
| 157 | <action android:name="android.intent.action.MAIN"/> |
| 158 | </intent-filter> |
| 159 | </activity> |
| 160 | |
| 161 | <activity android:name="com.android.inputmethod.dictionarypack.DownloadOverMeteredDialog" |
Tadashi G. Takaoka | 9b46ddc | 2014-04-04 14:14:47 +0900 | [diff] [blame^] | 162 | android:theme="@style/platformActivityTheme" |
| 163 | android:label="@string/dictionary_install_over_metered_network_prompt"> |
Jean Chalard | 0cc0544 | 2013-03-15 19:00:51 +0900 | [diff] [blame] | 164 | <intent-filter> |
| 165 | <action android:name="android.intent.action.MAIN"/> |
| 166 | </intent-filter> |
| 167 | </activity> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 168 | </application> |
| 169 | </manifest> |