-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
27 lines (25 loc) · 1.11 KB
/
plugin.xml
File metadata and controls
27 lines (25 loc) · 1.11 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cl.kunder.touchidkeychain" version="0.0.1">
<name>TouchID+Keychain</name>
<description>TouchID+Keychain cordova plugin for iOS</description>
<license>Apache 2.0</license>
<keywords>cordova,touchid,keychain,plugin</keywords>
<js-module src="www/touchidkeychainplugin.js" name="TouchIDKeychain">
<clobbers target="window.touchidkeychainplugin" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="TouchIDKeychain">
<param name="ios-package" value="TouchIDKeychain"/>
</feature>
</config-file>
<header-file src="src/ios/KeychainWrapper.h" />
<source-file src="src/ios/KeychainWrapper.m" />
<header-file src="src/ios/TouchIDKeychain.h" />
<source-file src="src/ios/TouchIDKeychain.m" />
<framework src="Security.framework" />
<framework src="Foundation.framework"/>
<framework src="LocalAuthentication.framework"/>
</platform>
</plugin>