-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
32 lines (31 loc) · 1.37 KB
/
AndroidManifest.xml
File metadata and controls
32 lines (31 loc) · 1.37 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="au.radsoft.clock"
android:versionCode="3"
android:versionName="3">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4" />
<application
android:label="@string/app_name"
android:description="@string/app_desc"
android:icon="@drawable/clock">
<receiver android:name="ClockWidget"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/clock_widget" />
</receiver>
<activity android:name="ShowAlarms"
android:label="@string/show_alarms"
android:theme="@android:style/Theme.NoDisplay"
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.SHOW_ALARMS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
<supports-screens android:anyDensity="true" />
</manifest>