forked from sectore/phonegap3-ios-datepicker-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
30 lines (22 loc) · 797 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="de.websector.datepicker"
version="0.2.3">
<name>Datepicker</name>
<description>Cordova Datepicker Plugin (iOS only)</description>
<license>MIT</license>
<keywords>cordova,datepicker,ios</keywords>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="DatePicker">
<param name="ios-package" value="DatePicker"/>
</feature>
</config-file>
<js-module src="www/DatePicker.js" name="DatePicker">
<clobbers target="datePicker" />
</js-module>
<header-file src="src/ios/DatePicker.h" />
<source-file src="src/ios/DatePicker.m" />
</platform>
</plugin>