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