-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (21 loc) · 794 Bytes
/
Copy pathplugin.xml
File metadata and controls
26 lines (21 loc) · 794 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.sundusy.plugin.calendar"
version="1.0.0">
<name>Calendar</name>
<description>PhoneGap Calendar Plugin</description>
<license>MIT</license>
<keywords>phonegap,calendar</keywords>
<js-module src="www/calendar.js" name="Calendar">
<clobbers target="window.calendar"/>
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Calendar">
<param name="android-package" value="com.sundusy.plugin.calendar.Calendar"/>
</feature>
</config-file>
<source-file src="src/android/Calendar.java" target-dir="src/com/sundusy/plugin/calendar"/>
</platform>
</plugin>