-
Notifications
You must be signed in to change notification settings - Fork 16
/
AndroidManifest.xml
54 lines (45 loc) · 2.22 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.josegd.monthcalwidget" android:versionCode="7" android:versionName="@string/app_version">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="18"/>
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:allowBackup="true">
<!-- 3x2 widget -->
<receiver
android:name=".MonthCalWidget3x2" android:label="@string/widget_3x2">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.intent.action.DATE_CHANGED"/>
<action android:name="com.josegd.monthcalwidget.APPWIDGET_UPDATE_AFTER_SETTINGS"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/mcw_provider_3x2" />
</receiver>
<!-- 4x3 widget -->
<receiver
android:name=".MonthCalWidget4x3" android:label="@string/widget_4x3">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.intent.action.DATE_CHANGED"/>
<action android:name="com.josegd.monthcalwidget.APPWIDGET_UPDATE_AFTER_SETTINGS"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/mcw_provider_4x3" />
</receiver>
<!-- Service -->
<service android:name=".MCWUpdateService" />
<!-- Settings (Lint warning "Exported activity does not require permission" remains, see http://stackoverflow.com/q/11916590/858626) -->
<activity
android:name=".MCWSettings" android:theme="@style/SettingsTheme" android:label="@string/app_settings">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
</intent-filter>
</activity>
<!-- Main activity with installation instructions -->
<activity
android:name=".MCWInstructions" android:theme="@style/InstructionsTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>