1
0
Fork 0
K9DataKiller/AndroidManifest.xml

25 lines
990 B
XML
Raw Normal View History

2010-04-24 22:02:20 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.r3pek.k9datakiller"
2010-07-24 12:28:14 +01:00
android:versionCode="2" android:versionName="1.0.1">
2010-04-24 22:02:20 +01:00
<application android:label="@string/app_name" android:icon="@drawable/icon_off">
<receiver android:icon="@drawable/icon_off"
android:name="K9DataKillerWidget"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
<action android:name="org.r3pek.k9datakiller.STATUS_CHANGED"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/widget"></meta-data>
</receiver>
<receiver android:name="StatusChanger">
<intent-filter>
<action android:name="org.r3pek.k9datakiller.CHANGE_STATUS"/>
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="3"/>
<uses-permission android:name="com.fsck.k9.permission.REMOTE_CONTROL"/>
</manifest>