forked from simplec-dev/LocalNotification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
38 lines (28 loc) · 1.01 KB
/
plugin.xml
File metadata and controls
38 lines (28 loc) · 1.01 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
<?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.2.2">
<name>LocalNotification</name>
<description>
This plugin control local notifications in iOS.
</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=2.3.0" />
</engines>
<asset src="www/LocalNotification.js" target="LocalNotification.js" />
<!-- ios -->
<platform name="ios">
<!-- Cordova < 2.3 -->
<plugins-plist key="LocalNotification" string="LocalNotification" />
<!-- Cordova >= 2.3 -->
<config-file target="config.xml" parent="plugins">
<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>
</plugin>