blob: 9ef1b438e4efed20d1022a622459acd188c5bc2f (
plain)
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
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anysoftkeyboard.languagepack.belarusian.pack">
<application>
<receiver
android:name="com.anysoftkeyboard.languagepack.belarusian.PackBroadcastReceiver"
android:exported="true">
<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/belarusian_keyboards" />
<meta-data
android:name="com.menny.android.anysoftkeyboard.dictionaries"
android:resource="@xml/belarusian_dictionaries" />
</receiver>
</application>
</manifest>
|