blob: 9e5b49b84eb7e4854e483839a9d287ae9a0e3b13 [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
The Android Open Source Project923bf412009-03-13 15:11:42 -070021 <uses-permission android:name="android.permission.VIBRATE"/>
Tadashi G. Takaoka5cd87e12011-01-25 12:13:35 +090022 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
The Android Open Source Project923bf412009-03-13 15:11:42 -070023 <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -080024 <uses-permission android:name="android.permission.READ_CONTACTS" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070025
satokc1da6562012-01-12 14:13:09 +090026 <application android:label="@string/aosp_android_keyboard_ime_name"
Ken Wakasa8ab24772011-08-31 16:09:01 +090027 android:icon="@drawable/ic_ime_settings"
Tadashi G. Takaoka9502cc12010-12-09 21:06:26 +090028 android:backupAgent="BackupAgent"
Tadashi G. Takaokab8afd542012-07-31 14:44:16 +090029 android:killAfterRestore="false"
30 android:supportsRtl="true">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070031
The Android Open Source Project923bf412009-03-13 15:11:42 -070032 <service android:name="LatinIME"
satokc1da6562012-01-12 14:13:09 +090033 android:label="@string/aosp_android_keyboard_ime_name"
The Android Open Source Project923bf412009-03-13 15:11:42 -070034 android:permission="android.permission.BIND_INPUT_METHOD">
35 <intent-filter>
36 <action android:name="android.view.InputMethod" />
37 </intent-filter>
38 <meta-data android:name="android.view.im" android:resource="@xml/method" />
39 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080040
satokc2b6a352011-08-08 19:16:20 +090041 <service android:name=".spellcheck.AndroidSpellCheckerService"
42 android:label="@string/spell_checker_service_name"
43 android:permission="android.permission.BIND_TEXT_SERVICE">
44 <intent-filter>
45 <action android:name="android.service.textservice.SpellCheckerService" />
46 </intent-filter>
47 <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" />
48 </service>
Jean Chalard31fd54c2011-08-12 17:18:32 +090049
Tadashi G. Takaoka55e5bdc2012-05-22 16:10:11 +090050 <activity android:name="SettingsActivity" android:label="@string/english_ime_settings"
51 android:uiOptions="splitActionBarWhenNarrow">
The Android Open Source Project923bf412009-03-13 15:11:42 -070052 <intent-filter>
53 <action android:name="android.intent.action.MAIN"/>
54 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070055 </activity>
56
Jean Chalard31fd54c2011-08-12 17:18:32 +090057 <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity"
58 android:label="@string/android_spell_checker_settings">
59 <intent-filter>
60 <action android:name="android.intent.action.MAIN"/>
61 </intent-filter>
62 </activity>
63
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090064 <activity android:name="DebugSettingsActivity" android:label="@string/english_ime_debug_settings">
satokbf966612010-09-27 12:55:21 +090065 <intent-filter>
66 <action android:name="android.intent.action.MAIN"/>
67 </intent-filter>
68 </activity>
69
satokea9098c2011-05-26 14:10:00 +090070 <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true">
71 <intent-filter>
72 <action android:name="android.text.style.SUGGESTION_PICKED" />
73 </intent-filter>
74 </receiver>
The Android Open Source Project923bf412009-03-13 15:11:42 -070075 </application>
76</manifest>