blob: 42f343a42e731a9406d6af95d796472c612593ee [file] [log] [blame]
Ken Wakasa1a9ef012012-07-06 20:29:08 +09001<?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 Zongker4fc01932010-01-27 14:32:42 -080017<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ben Komalofde61492011-09-23 15:10:13 -070018 coreApp="true"
Amith Yamasanib248c2f2010-03-12 16:40:27 -080019 package="com.android.inputmethod.latin">
Jeff Hamiltone11e2832010-02-12 18:55:34 -060020
Tadashi G. Takaokad90e12a2013-02-08 18:53:34 -080021 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
Ken Wakasa85732232012-07-31 15:59:56 +090022
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090023 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Jean Chalard0cc05442013-03-15 19:00:51 +090024 <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
Satoshi Kataoka492557e2013-05-01 15:52:08 +090025 <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 Project923bf412009-03-13 15:11:42 -070033
Tadashi G. Takaoka842e2452013-04-26 14:01:41 +090034 <application android:label="@string/english_ime_name"
Tadashi G. Takaoka499cea92013-05-09 11:43:48 +090035 android:icon="@mipmap/ic_launcher_keyboard"
Tadashi G. Takaokab8afd542012-07-31 14:44:16 +090036 android:killAfterRestore="false"
37 android:supportsRtl="true">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070038
The Android Open Source Project923bf412009-03-13 15:11:42 -070039 <service android:name="LatinIME"
Tadashi G. Takaoka842e2452013-04-26 14:01:41 +090040 android:label="@string/english_ime_name"
The Android Open Source Project923bf412009-03-13 15:11:42 -070041 android:permission="android.permission.BIND_INPUT_METHOD">
42 <intent-filter>
43 <action android:name="android.view.InputMethod" />
44 </intent-filter>
45 <meta-data android:name="android.view.im" android:resource="@xml/method" />
46 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080047
satokc2b6a352011-08-08 19:16:20 +090048 <service android:name=".spellcheck.AndroidSpellCheckerService"
Tadashi G. Takaoka842e2452013-04-26 14:01:41 +090049 android:label="@string/spell_checker_service_name"
satokc2b6a352011-08-08 19:16:20 +090050 android:permission="android.permission.BIND_TEXT_SERVICE">
51 <intent-filter>
52 <action android:name="android.service.textservice.SpellCheckerService" />
53 </intent-filter>
54 <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" />
55 </service>
Jean Chalard31fd54c2011-08-12 17:18:32 +090056
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090057 <activity android:name=".setup.SetupActivity"
Tadashi G. Takaoka842e2452013-04-26 14:01:41 +090058 android:label="@string/english_ime_name"
Tadashi G. Takaoka499cea92013-05-09 11:43:48 +090059 android:icon="@mipmap/ic_launcher_keyboard"
Tadashi G. Takaoka2b5c9722013-05-09 13:14:18 +090060 android:launchMode="singleTask"
61 android:noHistory="true">
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090062 <intent-filter>
63 <action android:name="android.intent.action.MAIN" />
Tadashi G. Takaoka1ffdaaf2013-02-26 17:56:54 +090064 <category android:name="android.intent.category.LAUNCHER" />
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090065 </intent-filter>
66 </activity>
67
Tadashi G. Takaoka2b5c9722013-05-09 13:14:18 +090068 <activity android:name=".setup.SetupWizardActivity"
69 android:label="@string/english_ime_name"
70 android:clearTaskOnLaunch="true">
71 <intent-filter>
72 <action android:name="android.intent.action.MAIN" />
73 </intent-filter>
74 </activity>
75
Tadashi G. Takaoka1ffdaaf2013-02-26 17:56:54 +090076 <receiver android:name=".setup.LauncherIconVisibilityManager">
77 <intent-filter>
78 <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
79 <action android:name="android.intent.action.BOOT_COMPLETED" />
80 <action android:name="android.intent.action.USER_INITIALIZE" />
81 </intent-filter>
82 </receiver>
83
Tadashi G. Takaoka842e2452013-04-26 14:01:41 +090084 <activity android:name="SettingsActivity" android:label="@string/english_ime_settings"
Tadashi G. Takaoka55e5bdc2012-05-22 16:10:11 +090085 android:uiOptions="splitActionBarWhenNarrow">
The Android Open Source Project923bf412009-03-13 15:11:42 -070086 <intent-filter>
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090087 <action android:name="android.intent.action.MAIN" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070088 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070089 </activity>
90
Jean Chalard31fd54c2011-08-12 17:18:32 +090091 <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity"
Tadashi G. Takaoka842e2452013-04-26 14:01:41 +090092 android:label="@string/android_spell_checker_settings">
Jean Chalard31fd54c2011-08-12 17:18:32 +090093 <intent-filter>
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090094 <action android:name="android.intent.action.MAIN" />
Jean Chalard31fd54c2011-08-12 17:18:32 +090095 </intent-filter>
96 </activity>
97
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090098 <activity android:name="DebugSettingsActivity" android:label="@string/english_ime_debug_settings">
satokbf966612010-09-27 12:55:21 +090099 <intent-filter>
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +0900100 <action android:name="android.intent.action.MAIN" />
satokbf966612010-09-27 12:55:21 +0900101 </intent-filter>
102 </activity>
103
satokea9098c2011-05-26 14:10:00 +0900104 <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true">
105 <intent-filter>
106 <action android:name="android.text.style.SUGGESTION_PICKED" />
107 </intent-filter>
108 </receiver>
Jean Chalard0cc05442013-03-15 19:00:51 +0900109
Jean Chalard76d5f512013-03-28 18:59:19 +0900110 <receiver android:name=".DictionaryPackInstallBroadcastReceiver">
111 <intent-filter>
Kurt Partridge2c1796c2013-06-10 08:14:06 -0700112 <action android:name="com.android.inputmethod.dictionarypack.aosp.UNKNOWN_CLIENT" />
Jean Chalard76d5f512013-03-28 18:59:19 +0900113 </intent-filter>
114 </receiver>
115
Jean Chalard0cc05442013-03-15 19:00:51 +0900116 <provider android:name="com.android.inputmethod.dictionarypack.DictionaryProvider"
117 android:grantUriPermissions="true"
118 android:exported="false"
119 android:authorities="@string/authority"
120 android:multiprocess="false"
121 android:label="@string/dictionary_provider_name">
122 </provider>
123
124 <service android:name="com.android.inputmethod.dictionarypack.DictionaryService"
125 android:label="@string/dictionary_service_name">
126 </service>
127
128 <receiver android:name="com.android.inputmethod.dictionarypack.EventHandler">
129 <intent-filter>
130 <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
131 <action android:name="android.intent.action.DATE_CHANGED" />
Kurt Partridge2c1796c2013-06-10 08:14:06 -0700132 <action android:name="com.android.inputmethod.dictionarypack.aosp.UPDATE_NOW" />
Jean Chalard0cc05442013-03-15 19:00:51 +0900133 </intent-filter>
134 </receiver>
135
136 <activity android:name="com.android.inputmethod.dictionarypack.DictionarySettingsActivity"
137 android:label="@string/dictionary_settings_title"
Jean Chalard0cc05442013-03-15 19:00:51 +0900138 android:theme="@android:style/Theme.Holo"
139 android:uiOptions="splitActionBarWhenNarrow">
140 <intent-filter>
141 <action android:name="android.intent.action.MAIN"/>
142 </intent-filter>
143 </activity>
144
145 <activity android:name="com.android.inputmethod.dictionarypack.DownloadOverMeteredDialog"
146 android:label="@string/dictionary_install_over_metered_network_prompt"
Jean Chalard0cc05442013-03-15 19:00:51 +0900147 android:theme="@android:style/Theme.Holo">
148 <intent-filter>
149 <action android:name="android.intent.action.MAIN"/>
150 </intent-filter>
151 </activity>
The Android Open Source Project923bf412009-03-13 15:11:42 -0700152 </application>
153</manifest>