-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAndroidManifest.xml
29 lines (26 loc) · 1.35 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.me.malcolmlandon.motion"
android:versionCode="2"
android:versionName="1.0.1">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<!-- Broadcast Receiver that will process AppWidget updates -->
<receiver android:name=".MotionWidget" android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="uk.me.malcolmlandon.motion.MotionWidget.ACTION_WIDGET_STATUS"/>
<action android:name="uk.me.malcolmlandon.motion.MotionWidget.ACTION_WIDGET_START"/>
<action android:name="uk.me.malcolmlandon.motion.MotionWidget.ACTION_WIDGET_PAUSE"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/motion_widget_provider" />
</receiver>
<activity android:name=".MotionWidgetConfigure">
<intent-filter>
<action android:name="uk.me.malcolmlandon.motion.MotionWidget.ACTION_WIDGET_CONFIGURE" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>