forked from katzer/cordova-plugin-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
45 lines (35 loc) · 1.27 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="de.appplant.cordova.plugin.badge"
version="0.4.0">
<name>Badge</name>
<description>A bunch of badge notification plugins for Cordova 3.x.x</description>
<keywords>badge, notification, live tiles, ios, windows phone 8, wp8</keywords>
<license>GPL v2 License</license>
<author>Sebastián Katzer (github.com/katzer)</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/badge.js" name="Badge">
<clobbers target="plugin.notification.badge" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Badge">
<param name="ios-package" value="APPBadge"/>
</feature>
</config-file>
<header-file src="src/ios/APPBadge.h" />
<source-file src="src/ios/APPBadge.m" />
</platform>
<!-- wp8 -->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="Badge">
<param name="wp-package" value="Badge"/>
</feature>
</config-file>
<source-file src="src/wp8/Badge.cs" />
</platform>
</plugin>