forked from DrewDahlman/Phonegap-LocalNotification
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (22 loc) · 882 Bytes
/
plugin.xml
File metadata and controls
29 lines (22 loc) · 882 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="https://github.com/hiattp/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</keywords>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="LocalNotification">
<param name="ios-package" value="LocalNotification"/>
</feature>
</config-file>
<js-module src="www/localnotification.js" name="LocalNotification">
<clobbers target="localNotifier" />
</js-module> -->
<header-file src="src/ios/LocalNotification.h" />
<source-file src="src/ios/LocalNotification.m" />
</platform>
</plugin>