-
Notifications
You must be signed in to change notification settings - Fork 3
/
AndroidManifest.xml
38 lines (31 loc) · 1.4 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
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.pugsplace.enlightenmonitor" android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/solar_panels_normal"
android:description="@string/app_description" android:debuggable="true">
<receiver android:enabled="true" android:name="MonitorWidget"
android:label="eSolar Monitor">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/monitorwidget_info" />
</receiver>
<!-- Service to perform web API queries -->
<service android:name="MonitorWidget$UpdateService" />
<!-- Configuration Activity -->
<activity android:icon="@drawable/solar_panels_normal"
android:screenOrientation="sensor" android:name="MonitorConfiguration"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
<intent-filter>
<action android:name="net.pugsplace.enlightenmonitor.DoConfigure" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>