forked from emergentdotorg/morseime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
49 lines (40 loc) · 1.74 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.emergent.android.morseime"
android:versionCode="3"
android:versionName="1.0.2"
>
<!-- History:
1.0.2 [3]: 2010-03-10 Landscape mode fixes.
1.0.1 [2]: 2010-03-09 Fix to respect all preference settings.
1.0.0 [1]: 2010-03-09 Initial release.
-->
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.READ_USER_DICTIONARY"/>
<uses-permission android:name="android.permission.WRITE_USER_DICTIONARY"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<application android:label="@string/morse_ime_name"
android:icon="@drawable/morse_icon"
android:killAfterRestore="false">
<service android:name=".MorseIME"
android:label="@string/morse_ime_name"
android:permission="android.permission.BIND_INPUT_METHOD">
<intent-filter>
<action android:name="android.view.InputMethod"/>
</intent-filter>
<meta-data android:name="android.view.im" android:resource="@xml/method"/>
</service>
<activity android:name=".MorseIMESettings" android:label="@string/morse_ime_settings">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
<activity android:name=".MorseIMEMain"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="7"/>
</manifest>