-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
20 lines (20 loc) · 907 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-inline-datepicker" version="0.1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Cordova Inline DatePicker</name>
<js-module name="DatePicker" src="www/datepicker.js">
<clobbers target="cordova.plugins.DatePicker" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="CDVDatePicker">
<param name="ios-package" value="CDVDatePicker" />
</feature>
</config-file>
<source-file src="src/ios/CDVDatePicker.swift" />
<source-file src="src/ios/DatePicker.swift" />
<source-file src="src/ios/DatePickerManager.swift" />
</platform>
<dependency id="cordova-plugin-add-swift-support" version="*" />
</plugin>