2011-06-04 22:14:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="de.schatenseite.android.waldemar" android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
|
|
|
android:debuggable="true">
|
|
|
|
|
|
|
|
<receiver android:name=".WaldemarWidget" android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2011-06-20 22:34:15 +02:00
|
|
|
<action android:name="de.schatenseite.android.waldemar.MIDNIGHTLY_WIDGET_UPDATE" />
|
2011-06-04 22:14:39 +02:00
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/waldemar_info" />
|
|
|
|
</receiver>
|
|
|
|
<activity android:name=".WaldemarPreferences" android:label="@string/preferences">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2011-06-19 22:04:23 +02:00
|
|
|
<uses-sdk android:minSdkVersion="10" />
|
2011-06-04 22:14:39 +02:00
|
|
|
|
|
|
|
</manifest>
|