forked from hiattp/Phonegap-LocalNotification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
66 lines (51 loc) · 2.5 KB
/
plugin.xml
File metadata and controls
66 lines (51 loc) · 2.5 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="https://github.com/gsmedley/Phonegap-LocalNotification"
id="localnotification"
version="0.1.0">
<name>LocalNotification</name>
<description>Local notification for time-based alerts.</description>
<license>MIT License</license>
<keywords>localnotification, notification, timer, alert, alarm clock, badge</keywords>
<js-module src="www/localnotification.js" name="LocalNotification">
<clobbers target="localNotifier" />
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="LocalNotification">
<param name="ios-package" value="LocalNotification"/>
</feature>
</config-file>
<header-file src="src/ios/LocalNotification.h" />
<source-file src="src/ios/LocalNotification.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="LocalNotification">
<param name="android-package" value="com.phonegap.plugin.localnotification.LocalNotification"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<receiver android:name="com.phonegap.plugin.localnotification.AlarmReceiver">
<meta-data android:name="AlarmReceiver" android:value="alarm" />
</receiver>
<receiver android:name="com.phonegap.plugin.localnotification.AlarmRestoreOnBoot">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
</config-file>
<source-file src="src/android/AlarmHelper.java" target-dir="src/com/phonegap/plugin/localnotification" />
<source-file src="src/android/AlarmOptions.java" target-dir="src/com/phonegap/plugin/localnotification" />
<source-file src="src/android/AlarmReceiver.java" target-dir="src/com/phonegap/plugin/localnotification" />
<source-file src="src/android/AlarmRestoreOnBoot.java" target-dir="src/com/phonegap/plugin/localnotification" />
<source-file src="src/android/LocalNotification.java" target-dir="src/com/phonegap/plugin/localnotification" />
</platform>
</plugin>