-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.xml
29 lines (24 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.apache.cordova.plugin.datepicker"
version="1.0.0">
<name>Datepicker</name>
<description>Cordova Datepicker Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,datepicker</keywords>
<author>Patrick Foh</author>
<js-module src="www/datepicker.js" name="Datepicker">
<clobbers target="window.plugins.datePicker" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Datepicker">
<param name="android-package" value="org.apache.cordova.datepicker.Datepicker"/>
</feature>
</config-file>
<source-file src="src/android/Datepicker.java" target-dir="src/org/apache/cordova/datepicker" />
</platform>
</plugin>