blob: c05b318b9faf99b1941ed5e987a4be19c3753f9b [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.VIBRATE" />
24 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070025 <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
Amith Yamasanib248c2f2010-03-12 16:40:27 -080026 <uses-permission android:name="android.permission.READ_CONTACTS" />
Tadashi G. Takaoka1ffdaaf2013-02-26 17:56:54 +090027 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070028
satokc1da6562012-01-12 14:13:09 +090029 <application android:label="@string/aosp_android_keyboard_ime_name"
Jason Chenc1bcb8e2012-10-12 14:19:40 -070030 android:icon="@mipmap/ic_ime_settings"
Tadashi G. Takaokab8afd542012-07-31 14:44:16 +090031 android:killAfterRestore="false"
32 android:supportsRtl="true">
Jeff Hamilton43d34da2009-05-08 18:57:10 -070033
The Android Open Source Project923bf412009-03-13 15:11:42 -070034 <service android:name="LatinIME"
satokc1da6562012-01-12 14:13:09 +090035 android:label="@string/aosp_android_keyboard_ime_name"
The Android Open Source Project923bf412009-03-13 15:11:42 -070036 android:permission="android.permission.BIND_INPUT_METHOD">
37 <intent-filter>
38 <action android:name="android.view.InputMethod" />
39 </intent-filter>
40 <meta-data android:name="android.view.im" android:resource="@xml/method" />
41 </service>
Doug Zongker4fc01932010-01-27 14:32:42 -080042
satokc2b6a352011-08-08 19:16:20 +090043 <service android:name=".spellcheck.AndroidSpellCheckerService"
44 android:label="@string/spell_checker_service_name"
45 android:permission="android.permission.BIND_TEXT_SERVICE">
46 <intent-filter>
47 <action android:name="android.service.textservice.SpellCheckerService" />
48 </intent-filter>
49 <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" />
50 </service>
Jean Chalard31fd54c2011-08-12 17:18:32 +090051
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090052 <activity android:name=".setup.SetupActivity"
53 android:label="@string/aosp_android_keyboard_ime_name"
Tadashi G. Takaoka1ffdaaf2013-02-26 17:56:54 +090054 android:icon="@drawable/ic_setup_wizard">
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090055 <intent-filter>
56 <action android:name="android.intent.action.MAIN" />
Tadashi G. Takaoka1ffdaaf2013-02-26 17:56:54 +090057 <category android:name="android.intent.category.LAUNCHER" />
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090058 </intent-filter>
59 </activity>
60
Tadashi G. Takaoka1ffdaaf2013-02-26 17:56:54 +090061 <receiver android:name=".setup.LauncherIconVisibilityManager">
62 <intent-filter>
63 <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
64 <action android:name="android.intent.action.BOOT_COMPLETED" />
65 <action android:name="android.intent.action.USER_INITIALIZE" />
66 </intent-filter>
67 </receiver>
68
Tadashi G. Takaoka55e5bdc2012-05-22 16:10:11 +090069 <activity android:name="SettingsActivity" android:label="@string/english_ime_settings"
70 android:uiOptions="splitActionBarWhenNarrow">
The Android Open Source Project923bf412009-03-13 15:11:42 -070071 <intent-filter>
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090072 <action android:name="android.intent.action.MAIN" />
The Android Open Source Project923bf412009-03-13 15:11:42 -070073 </intent-filter>
Amith Yamasani36fcf252009-10-12 13:48:35 -070074 </activity>
75
Jean Chalard31fd54c2011-08-12 17:18:32 +090076 <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity"
77 android:label="@string/android_spell_checker_settings">
78 <intent-filter>
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090079 <action android:name="android.intent.action.MAIN" />
Jean Chalard31fd54c2011-08-12 17:18:32 +090080 </intent-filter>
81 </activity>
82
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090083 <activity android:name="DebugSettingsActivity" android:label="@string/english_ime_debug_settings">
satokbf966612010-09-27 12:55:21 +090084 <intent-filter>
Tadashi G. Takaokacb0beaf2013-02-14 15:01:53 +090085 <action android:name="android.intent.action.MAIN" />
satokbf966612010-09-27 12:55:21 +090086 </intent-filter>
87 </activity>
88
satokea9098c2011-05-26 14:10:00 +090089 <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true">
90 <intent-filter>
91 <action android:name="android.text.style.SUGGESTION_PICKED" />
92 </intent-filter>
93 </receiver>
The Android Open Source Project923bf412009-03-13 15:11:42 -070094 </application>
95</manifest>