blob: 07684e4d1803d3cf53b22d183c53cdd14fbd81ad [file] [log] [blame]
Daniel Sandler8b1f07b2010-01-26 09:56:13 -05001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.android.buildwidget"
4 android:versionCode="1"
5 android:versionName="1.0">
6
7 <uses-sdk android:minSdkVersion="3" />
8 <application android:icon="@drawable/icon" android:label="@string/app_name">
9 <receiver android:name=".BuildWidget" android:label="@string/widget_name">
10 <intent-filter>
11 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
12 </intent-filter>
13 <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_build" />
14 </receiver>
15 <service android:name=".BuildWidget$UpdateService" />
16 </application>
17
18</manifest>