blob: f79c324c2f0d29965ef6cb2faaea3580106683ea [file] [log] [blame]
The Android Open Source Project053d5092009-03-15 21:40:26 -07001<!--
Junichi Monma59aefa22012-04-24 16:13:54 +09002 Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
The Android Open Source Project053d5092009-03-15 21:40:26 -07003
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
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Daisuke Miyakawaf66e64c2009-10-29 21:46:48 +090018 package="jp.co.omronsoft.openwnn">
Jeff Hamilton0f667302010-02-12 23:46:58 -060019
20 <original-package android:name="jp.co.omronsoft.openwnn" />
21
22 <uses-permission xmlns:android="http://schemas.android.com/apk/res/android" android:name="android.permission.VIBRATE"/>
The Android Open Source Project053d5092009-03-15 21:40:26 -070023 <application android:label="OpenWnn">
24
Daisuke Miyakawae83971e2009-06-16 16:31:48 +090025 <service android:name="OpenWnnJAJP" android:label="Japanese IME"
The Android Open Source Project053d5092009-03-15 21:40:26 -070026 android:permission="android.permission.BIND_INPUT_METHOD"
27 android:id="@+id/openwnn_japanese">
28 <intent-filter>
29 <action android:name="android.view.InputMethod" />
30 </intent-filter>
31 <meta-data android:name="android.view.im" android:resource="@xml/method_ja" />
32 </service>
33
34 <activity android:name="OpenWnnControlPanelJAJP"
35 android:label="@string/preference_ime_setting_app">
36 <intent-filter>
37 <action android:name="android.intent.action.MAIN" />
38 </intent-filter>
39 </activity>
40
41 <activity android:name="jp.co.omronsoft.openwnn.JAJP.UserDictionaryToolsListJAJP" />
42
43 <activity android:name="jp.co.omronsoft.openwnn.JAJP.UserDictionaryToolsEditJAJP" android:label="@string/user_dictionary_edit_words" />
44
The Android Open Source Project053d5092009-03-15 21:40:26 -070045 <activity android:name="jp.co.omronsoft.openwnn.EN.UserDictionaryToolsListEN" />
46
47 <activity android:name="jp.co.omronsoft.openwnn.EN.UserDictionaryToolsEditEN" android:label="@string/user_dictionary_edit_words" />
48
The Android Open Source Project053d5092009-03-15 21:40:26 -070049 </application>
50
The Android Open Source Project053d5092009-03-15 21:40:26 -070051</manifest>
52