forked from leecrossley/cordova-plugin-touchid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
25 lines (25 loc) · 1.11 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-touchid" version="0.4.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>