-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (28 loc) · 1.33 KB
/
plugin.xml
File metadata and controls
29 lines (28 loc) · 1.33 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
28
29
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-fingerprint-sdk" version="0.1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>SimplFingerprintWrapper</name>
<js-module name="SimplFingerprintWrapper" src="www/SimplFingerprintWrapper.js">
<clobbers target="cordova.plugins.SimplFingerprintWrapper" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="SimplFingerprintWrapper">
<param name="ios-package" value="SimplFingerprintWrapper" />
</feature>
</config-file>
<source-file src="src/ios/SimplFingerprintWrapper.m" />
<framework src="SimplFingerPrint" type="podspec" spec="~> 1.0.1" />
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="SimplFingerprintWrapper">
<param name="android-package" value="com.simpl.SimplFingerprintWrapper" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<source-file src="src/android/SimplFingerprintWrapper.java" target-dir="src/cordova-plugin-fingerprint-sdk/SimplFingerprintWrapper" />
<framework custom="true" src="src/android/build.gradle" type="gradleReference" />
</platform>
</plugin>