forked from EddyVerbruggen/cordova-plugin-touch-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
executable file
·48 lines (33 loc) · 1.2 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
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="nl.x-services.plugins.touchid"
version="2.0.0">
<name>Touch ID</name>
<description>
Scan the fingerprint of your user with the TouchID sensor (iPhone 5S, iPhone 6, ..)
</description>
<author>Eddy Verbruggen</author>
<license>MIT</license>
<keywords>TouchID, Touch ID, Fingerprint, Biometric</keywords>
<repo>https://github.com/EddyVerbruggen/cordova-plugin-touchid.git</repo>
<issue>https://github.com/EddyVerbruggen/cordova-plugin-touchid/issues</issue>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/TouchID.js" name="TouchID">
<clobbers target="window.plugins.touchid" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="TouchID">
<param name="ios-package" value="TouchID"/>
</feature>
</config-file>
<framework src="LocalAuthentication.framework" />
<framework src="Security.framework" />
<header-file src="src/ios/TouchID.h"/>
<source-file src="src/ios/TouchID.m"/>
</platform>
</plugin>