Skip to content

Instantly share code, notes, and snippets.

@wmbest2
Created March 3, 2011 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmbest2/853185 to your computer and use it in GitHub Desktop.
Save wmbest2/853185 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wmbest.countdown"
android:versionCode="1"
android:versionName="1.0">
<application android:label="TEST WIDGET" android:icon="@drawable/icon">
<receiver android:name="CountdownWidget"
android:label="Jill's Widget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="com.wmbest.countdown.timer_update" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/countdown_widget_provider" />
</receiver>
<service android:label="Countdown Service" android:name="CountService" />
</application>
<uses-sdk android:minSdkVersion="7" />
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment