OSDN Git Service

f93b494fd3608285692e2d61e1696a31dbe2b995
[nicownn/NicoWnn.git] / AndroidManifest.xml
1 <!--
2  Copyright (C) 2008,2009  OMRON SOFTWARE Co., Ltd.
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
17 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
18           package="com.hiroshica.android.input.nicownn2"
19           android:versionCode="18" android:versionName="1.0.18">
20   <uses-permission xmlns:android="http://schemas.android.com/apk/res/android" android:name="android.permission.VIBRATE"/>
21     <application android:icon="@drawable/icon" android:label="NicoWnn">
22
23       <!--
24           <intent-filter>
25             <action android:name="com.adamrocker.android.simeji.ACTION_INTERCEPT" />
26             <category android:name="com.adamrocker.android.simeji.REPLACE" />
27             <category android:name="android.intent.category.DEFAULT" />
28           </intent-filter>
29           -->
30
31         <service android:name="NicoWnnJAJP" android:label="nicoWnn IME"
32                  android:permission="android.permission.BIND_INPUT_METHOD"
33                  android:id="@+id/nicownn_japanese">
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_ja" />
38
39         </service>
40
41         <activity android:name="NicoWnnControlPanelJAJP"
42                 android:label="@string/preference_ime_setting_app">
43             <intent-filter>
44                 <action android:name="android.intent.action.MAIN" />
45             </intent-filter>
46         </activity>
47
48         <activity android:name="NicoWnnMain"
49                   android:label="@string/nicownn_title">
50           <intent-filter>
51             <action android:name="android.intent.action.MAIN" />
52             <category android:name="android.intent.category.LAUNCHER" />
53           </intent-filter>
54         </activity>
55         
56
57         <activity android:name="com.hiroshica.android.input.nicownn2.JAJP.UserDictionaryToolsListJAJP" /> 
58
59         <activity android:name="com.hiroshica.android.input.nicownn2.JAJP.UserDictionaryToolsEditJAJP" android:label="@string/user_dictionary_edit_words" /> 
60
61         <activity android:name="com.hiroshica.android.input.nicownn2.EN.UserDictionaryToolsListEN" /> 
62
63         <activity android:name="com.hiroshica.android.input.nicownn2.EN.UserDictionaryToolsEditEN" android:label="@string/user_dictionary_edit_words" /> 
64
65         <!--
66         <activity android:name="com.hiroshica.android.input.nicownn2.NicoWnnMushUp">
67           <intent-filter>
68             <action android:name="com.adamrocker.android.simeji.ACTION_INTERCEPT" />
69             <category android:name="com.adamrocker.android.simeji.REPLACE" />
70             <category android:name="android.intent.category.DEFAULT" />
71           </intent-filter>
72         </activity>
73         -->
74         
75     </application>
76     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
77     <uses-sdk android:minSdkVersion="3" />
78 </manifest> 
79