forked from olore/LocalNotifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
71 lines (60 loc) · 2.81 KB
/
plugin.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.phonegap.plugin.localnotification"
version="1.0.0">
<name>Local Notification</name>
<description>
Notify a user at a pre-determined time using LocalNotifications on iOS or
alarms on Android.
</description>
<engines>
<!--
Cordova 2.8.0 is all I have tested on - it should work fine with earlier versions.
Please modify the below line, test, and submit a PR if it works for you.
-->
<engine name="cordova" version=">=2.8.0" />
</engines>
<asset src="www/LocalNotification.js" target="LocalNotification.js" />
<!-- android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.phonegap.plugin.localnotification.LocalNotification"
android:label="@string/app_name">
<intent-filter>
</intent-filter>
</activity>
<receiver android:name="com.phonegap.plugin.localnotification.AlarmReceiver" >
</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="res/xml/config.xml" parent="/*/plugins">
<plugin name="LocalNotification"
value="com.phonegap.plugin.localnotification.LocalNotification" />
</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>
<!-- ios -->
<platform name="ios">
<plugins-plist key="LocalNotification"
string="LocalNotification" />
<config-file target="config.xml" parent="plugins">
<plugin name="LocalNotification" value="LocalNotification" />
</config-file>
<header-file src="src/ios/LocalNotification.h" />
<source-file src="src/ios/LocalNotification.m" />
</platform>
</plugin>