summaryrefslogtreecommitdiff
path: root/plugins/hu.dpal.phonegap.plugins.PinDialog/plugin.xml
blob: 95c375243d8f17171d7c4f7fe07f5b0b15b5900f (plain)
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
<?xml version="1.0" encoding="UTF-8"?>

<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
           id="hu.dpal.phonegap.plugins.PinDialog"
      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>