UNPKG

com.peerio.cordova.plugin.touchid

Version:
35 lines (31 loc) 1.24 kB
<?xml version="1.0" encoding="UTF-8"?> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="com.peerio.cordova.plugin.touchid" version="1.1.0"> <name>Peerio Keychain TouchID Plugin for Cordova iOS</name> <description> This plugin gives the application ability to store arbitrary string data protected by TouchID and retrieve it accordingly </description> <license>Apache 2.0</license> <keywords>keychain,touchid,peerio</keywords> <engines> <engine name="cordova-ios" version=">=2.2.0" /> </engines> <js-module src="www/peerio-keychain-touchid.js" name="PeerioTouchIdKeychain"> <clobbers target="window.PeerioTouchIdKeychain" /> </js-module> <!-- ios --> <platform name="ios"> <config-file target="config.xml" parent="/*"> <feature name="PeerioTouchIdKeychain"> <param name="ios-package" value="PeerioTouchIdKeychain" /> </feature> </config-file> <header-file src="src/ios/PeerioTouchIdKeychain.h" /> <source-file src="src/ios/PeerioTouchIdKeychain.m" /> <framework src="Security.framework" /> <framework src="Foundation.framework"/> <framework src="LocalAuthentication.framework"/> </platform> </plugin>