-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugin.xml
More file actions
37 lines (28 loc) · 1018 Bytes
/
plugin.xml
File metadata and controls
37 lines (28 loc) · 1018 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
30
31
32
33
34
35
36
37
<?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.simplec.plugins.localnotification"
version="0.3.6">
<name>LocalNotification</name>
<description>
This plugin control local notifications in iOS.
</description>
<license>Apache 2.0</license>
<engines>
<engine name="cordova" version=">=2.3.0" />
</engines>
<js-module src="www/LocalNotification.js" name="LocalNotification">
<clobbers target="window.plugins.localNotification" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="LocalNotification">
<param name="ios-package" value="LocalNotification" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/LocalNotification.h" />
<source-file src="src/ios/LocalNotification.m" />
</platform>
</plugin>