-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAndroidManifest.xml
26 lines (23 loc) · 1.15 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.momodalo.app.vimtouch.tagsplugin"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"></uses-sdk>
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<application android:icon="@drawable/app_icon" android:label="@string/app_name">
<receiver android:exported="true" android:name=".VimBroadcastReceiver">
<intent-filter>
<action android:name="net.momodalo.app.vimtouch.PLUGIN" />
<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="net.momodalo.app.vimtouch.plugin" android:resource="@xml/plugin" />
</receiver>
</application>
</manifest>