summaryrefslogtreecommitdiff
path: root/plugins/cordova-plugin-touchid/plugin.xml
diff options
context:
space:
mode:
authorArjun Roychowdhury <pliablepixels@gmail.com>2015-09-17 16:28:48 -0400
committerArjun Roychowdhury <pliablepixels@gmail.com>2015-09-17 16:28:48 -0400
commitdf19b39f1d8a4440b9c83fd297ea7d7748ca7cc9 (patch)
tree9fac88b6f4e1177e179478ef9e9164f8405785f5 /plugins/cordova-plugin-touchid/plugin.xml
parent016b7e1190568149793f62fc6c1f268d46c06c49 (diff)
TouchID support now added for PIN
Diffstat (limited to 'plugins/cordova-plugin-touchid/plugin.xml')
-rw-r--r--plugins/cordova-plugin-touchid/plugin.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/cordova-plugin-touchid/plugin.xml b/plugins/cordova-plugin-touchid/plugin.xml
new file mode 100644
index 00000000..1331453d
--- /dev/null
+++ b/plugins/cordova-plugin-touchid/plugin.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-touchid" version="0.3.0">
+ <name>Touch ID</name>
+ <author>Lee Crossley (http://ilee.co.uk/)</author>
+ <description>Cordova Plugin to leverage the iOS local authentication framework to allow in-app user authentication using Touch ID.</description>
+ <keywords>cordova, touch id, touchid, authentication, fingerprint, id, login, passcode</keywords>
+ <license>MIT</license>
+ <engines>
+ <engine name="cordova" version=">=3.0.0" />
+ </engines>
+ <js-module src="www/touchid.js" name="TouchID">
+ <clobbers target="touchid" />
+ </js-module>
+ <platform name="ios">
+ <config-file target="config.xml" parent="/*">
+ <feature name="TouchID">
+ <param name="ios-package" value="TouchID" />
+ </feature>
+ </config-file>
+ <header-file src="src/ios/TouchID.h" />
+ <source-file src="src/ios/TouchID.m" />
+ <framework src="LocalAuthentication.framework" />
+ <framework src="Security.framework" />
+ </platform>
+</plugin>