Skip to content

Instantly share code, notes, and snippets.

@yerenutku
Last active April 21, 2017 13:33
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 yerenutku/92737e01b27bbcf32d95c2cb03c5322a to your computer and use it in GitHub Desktop.
Save yerenutku/92737e01b27bbcf32d95c2cb03c5322a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.erenutku.simplewidgetexample"
xmlns:android="http://schemas.android.com/apk/res/android">
<application...>
...
<receiver android:name=".SimpleAppWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/simple_app_widget_info"/>
</receiver>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment