forked from Paldom/PinDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
44 lines (33 loc) · 1.27 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="cordova-plugin-pin-dialog"
version="0.1.3">
<name>PinDialog</name>
<description>
PhoneGap numeric password dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git
</description>
<license>MIT</license>
<keywords>phonegap,android,ios,numeric,password,pin,dialog</keywords>
<js-module src="www/pin.js" name="PinDialog">
<merges target="window.plugins.pinDialog" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="PinDialog">
<param name="android-package" value="hu.dpal.phonegap.plugins.PinDialog"/>
</feature>
</config-file>
<source-file src="src/android/PinDialog.java" target-dir="src/hu/dpal/phonegap/plugins" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="PinDialog">
<param name="ios-package" value="CDVPinDialog"/>
</feature>
</config-file>
<header-file src="src/ios/CDVPinDialog.h" />
<source-file src="src/ios/CDVPinDialog.m" />
</platform>
</plugin>