forked from AnySoftKeyboard/LanguagePack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
33 lines (30 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anysoftkeyboard.languagepack.catalan_dvorak"
android:versionName="20140303" android:versionCode="1">
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="15"></uses-sdk>
<supports-screens
android:xlargeScreens="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<!-- http://d.android.com/guide/practices/screens_support.html read about legacy. -->
<application android:icon="@drawable/app_icon" android:label="@string/app_name">
<receiver android:exported="true" android:name="com.anysoftkeyboard.languagepack.catalan_dvorak.PackBroadcastReceiver">
<intent-filter>
<action android:name="com.menny.android.anysoftkeyboard.KEYBOARD" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.ALTERNATIVE" />
<category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
</intent-filter>
<intent-filter>
<action android:name="com.menny.android.anysoftkeyboard.DICTIONARY" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.ALTERNATIVE" />
<category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
</intent-filter>
<meta-data android:name="com.menny.android.anysoftkeyboard.keyboards" android:resource="@xml/keyboards" />
</receiver>
</application>
</manifest>