-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
36 lines (27 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.hypermurea.phonegap.wp8-datetimepicker-plugin"
version="0.0.1">
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<name>Datetimepicker (for WP8)</name>
<description>Provides date/time picker controls for Phonegap and WP8</description>
<author>Jaakko Santala</author>
<keywords>datepicker wp8</keywords>
<license></license>
<js-module src="www/datetimepicker.js" name="datetimepicker">
<clobbers target="navigator.datetimepicker"/>
</js-module>
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="DateTimePicker">
<param name="wp-package" value="DateTimePicker"/>
</feature>
</config-file>
<source-file src="src/DateTimePicker.cs"/>
<source-file src="src/DateTimePickerTask.cs"/>
<!--<source-file src="src/packages.config" target-dir="../../"/>-->
</platform>
</plugin>