-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
50 lines (39 loc) · 2.08 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
<?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.plugins.localnotification"
version="1.0">
<name>LocalNotification</name>
<description>LocalNotification Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,local,notification</keywords>
<js-module src="www/LocalNotification.js" name="LocalNotification">
<clobbers target="window.plugins.localNotification" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="LocalNotification" >
<param name="android-package" value="com.phonegap.plugins.localnotification.LocalNotification"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<receiver android:name="com.phonegap.plugins.localnotification.AlarmReceiver" >
</receiver>
<receiver android:name="com.phonegap.plugins.localnotification.AlarmRestoreOnBoot" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</config-file>
<source-file src="src/android/LocalNotification.java" target-dir="src/com/phonegap/plugins/localnotification" />
<source-file src="src/android/AlarmHelper.java"
target-dir="src/com/phonegap/plugins/localnotification" />
<source-file src="src/android/AlarmOptions.java"
target-dir="src/com/phonegap/plugins/localnotification" />
<source-file src="src/android/AlarmReceiver.java"
target-dir="src/com/phonegap/plugins/localnotification" />
<source-file src="src/android/AlarmRestoreOnBoot.java"
target-dir="src/com/phonegap/plugins/localnotification" />
</platform>
</plugin>