18 lines
807 B
XML
18 lines
807 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="de.thesmile.android.widget"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
|
|
<!-- Broadcast Receiver that will process AppWidget updates -->
|
|
<receiver android:name=".HelloWidget" android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.appwidget.provider" android:resource="@xml/hello_widget_provider" />
|
|
</receiver>
|
|
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="3" />
|
|
</manifest> |