blob: 81814036a701bfedd592a53653fdbbb18f78d89a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anysoftkeyboard.quicktextkeys.bbcodeskey">
<application>
<receiver
android:name="com.anysoftkeyboard.quicktextkeys.bbcodeskeykey.KeyBroadcastReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.anysoftkeyboard.plugin.QUICK_TEXT_KEY" />
<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.anysoftkeyboard.plugindata.quicktextkeys"
android:resource="@xml/bbcodeskey_quick_text_keys" />
</receiver>
</application>
</manifest>
|