forked from VitaliiBlagodir/cordova-plugin-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
60 lines (47 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.plugin.datepicker"
version="0.3.22">
<name>Datepicker</name>
<description>Cordova Datepicker Plugin for iOS and Android. </description>
<license>MIT</license>
<keywords>cordova,datepicker,ios,android</keywords>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="DatePickerPlugin">
<param name="android-package" value="com.plugin.datepicker.DatePickerPlugin"/>
</feature>
</config-file>
<js-module src="www/android/DatePicker.js" name="DatePicker">
<clobbers target="datePicker" />
</js-module>
<source-file src="src/android/DatePickerPlugin.java" target-dir="src/com/plugin/datepicker" />
</platform>
<!-- 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/ios/DatePicker.js" name="DatePicker">
<clobbers target="datePicker" />
</js-module>
<header-file src="src/ios/DatePicker.h" />
<source-file src="src/ios/DatePicker.m" />
</platform>
<!-- wp8 -->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="DateTimePicker">
<param name="wp-package" value="DateTimePicker"/>
</feature>
</config-file>
<js-module src="www/wp8/DatePicker.js" name="DateTimePicker">
<clobbers target="datePicker" />
</js-module>
<source-file src="src/wp8/DateTimePicker.cs"/>
<source-file src="src/wp8/DateTimePickerTask.cs"/>
</platform>
</plugin>