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 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.VIBRATE"/> |
Tadashi G. Takaoka | 5cd87e1 | 2011-01-25 12:13:35 +0900 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.READ_USER_DICTIONARY" /> |
Amith Yamasani | b248c2f | 2010-03-12 16:40:27 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 25 | |
satok | c1da656 | 2012-01-12 14:13:09 +0900 | [diff] [blame] | 26 | <application android:label="@string/aosp_android_keyboard_ime_name" |
Ken Wakasa | 8ab2477 | 2011-08-31 16:09:01 +0900 | [diff] [blame] | 27 | android:icon="@drawable/ic_ime_settings" |
Tadashi G. Takaoka | 9502cc1 | 2010-12-09 21:06:26 +0900 | [diff] [blame] | 28 | android:backupAgent="BackupAgent" |
Christopher Tate | f265392 | 2009-09-01 21:16:19 -0700 | [diff] [blame] | 29 | android:killAfterRestore="false"> |
Jeff Hamilton | 43d34da | 2009-05-08 18:57:10 -0700 | [diff] [blame] | 30 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 31 | <service android:name="LatinIME" |
satok | c1da656 | 2012-01-12 14:13:09 +0900 | [diff] [blame] | 32 | android:label="@string/aosp_android_keyboard_ime_name" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 33 | android:permission="android.permission.BIND_INPUT_METHOD"> |
| 34 | <intent-filter> |
| 35 | <action android:name="android.view.InputMethod" /> |
| 36 | </intent-filter> |
| 37 | <meta-data android:name="android.view.im" android:resource="@xml/method" /> |
| 38 | </service> |
Doug Zongker | 4fc0193 | 2010-01-27 14:32:42 -0800 | [diff] [blame] | 39 | |
satok | c2b6a35 | 2011-08-08 19:16:20 +0900 | [diff] [blame] | 40 | <service android:name=".spellcheck.AndroidSpellCheckerService" |
| 41 | android:label="@string/spell_checker_service_name" |
| 42 | android:permission="android.permission.BIND_TEXT_SERVICE"> |
| 43 | <intent-filter> |
| 44 | <action android:name="android.service.textservice.SpellCheckerService" /> |
| 45 | </intent-filter> |
| 46 | <meta-data android:name="android.view.textservice.scs" android:resource="@xml/spellchecker" /> |
| 47 | </service> |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 48 | |
Tadashi G. Takaoka | 55e5bdc | 2012-05-22 16:10:11 +0900 | [diff] [blame] | 49 | <activity android:name="SettingsActivity" android:label="@string/english_ime_settings" |
| 50 | android:uiOptions="splitActionBarWhenNarrow"> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 51 | <intent-filter> |
| 52 | <action android:name="android.intent.action.MAIN"/> |
| 53 | </intent-filter> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 54 | </activity> |
| 55 | |
Jean Chalard | 31fd54c | 2011-08-12 17:18:32 +0900 | [diff] [blame] | 56 | <activity android:name="com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsActivity" |
| 57 | android:label="@string/android_spell_checker_settings"> |
| 58 | <intent-filter> |
| 59 | <action android:name="android.intent.action.MAIN"/> |
| 60 | </intent-filter> |
| 61 | </activity> |
| 62 | |
Tadashi G. Takaoka | c206d04 | 2012-04-13 19:53:44 +0900 | [diff] [blame] | 63 | <activity android:name="DebugSettingsActivity" android:label="@string/english_ime_debug_settings"> |
satok | bf96661 | 2010-09-27 12:55:21 +0900 | [diff] [blame] | 64 | <intent-filter> |
| 65 | <action android:name="android.intent.action.MAIN"/> |
| 66 | </intent-filter> |
| 67 | </activity> |
| 68 | |
satok | ea9098c | 2011-05-26 14:10:00 +0900 | [diff] [blame] | 69 | <receiver android:name="SuggestionSpanPickedNotificationReceiver" android:enabled="true"> |
| 70 | <intent-filter> |
| 71 | <action android:name="android.text.style.SUGGESTION_PICKED" /> |
| 72 | </intent-filter> |
| 73 | </receiver> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 74 | </application> |
| 75 | </manifest> |