Waldemar/AndroidManifest.xml
2011-06-04 22:14:39 +02:00

27 lines
1.0 KiB
XML

<?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>
<action android:name="MIDNIGHTLY_WIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/waldemar_info" />
</receiver>
<!-- <activity android:name=".WaldemarConfig" android:label="Waldemar Config"> -->
<activity android:name=".WaldemarPreferences" android:label="@string/preferences">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>