-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
74 lines (58 loc) · 3.21 KB
/
AndroidManifest.xml
File metadata and controls
74 lines (58 loc) · 3.21 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="omalleyland.my.simple.tools"
android:versionName="1.0" android:versionCode="1">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-sdk android:minSdkVersion="7" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<!-- Main Activity that displays when the launcher is clicked -->
<!-- Configure(Main Copy) Activity that displays when the Widget "Open" Button is clicked -->
<!-- Alarm Activity that displays when the Alarm receiver calls it -->
<activity android:label="My Simple Alarm Clock"
android:launchMode="singleInstance" android:name="omalleyland.my.simple.tools.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Receiver class for when the Alarm goes off -->
<!-- Receiver class for when the Alarm goes off -->
<receiver android:name="omalleyland.my.simple.tools.AlarmReceiver"/>
<!-- Broadcast Receiver that will process AppWidget updates -->
<receiver android:label="@string/app_name" android:name="omalleyland.my.simple.tools.NextAlarm">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/nextalarmwidgetprovider" />
</receiver>
<!-- Service for Updating Next Alarm Value on Widget -->
<service android:configChanges="keyboardHidden|orientation" android:name="omalleyland.my.simple.tools.UpdateService"></service>
<receiver android:permission="android.permission.RECEIVE_BOOT_COMPLETED" android:name="omalleyland.my.simple.tools.StartUpReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<!-- The application's publisher ID assigned by AdMob -->
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation"/>
<!-- Track Market installs
<receiver android:name="com.admob.android.ads.analytics.InstallReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver> -->
<activity android:name="omalleyland.my.simple.tools.AlarmActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter></activity>
<activity android:name="omalleyland.my.simple.tools.ConfigureAlarm"
android:launchMode="singleInstance">
<intent-filter>
<action android:name=".NextAlarm.ACTION_WIDGET_CONFIGURE"/>
</intent-filter>
</activity>
</application>
</manifest>