You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
777 B
19 lines
777 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.buildwidget"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="3" />
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
<receiver android:name=".BuildWidget" android:label="@string/widget_name">
|
|
<intent-filter>
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_build" />
|
|
</receiver>
|
|
<service android:name=".BuildWidget$UpdateService" />
|
|
</application>
|
|
|
|
</manifest>
|