Created
March 3, 2011 17:58
-
-
Save wmbest2/853185 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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