forked from vmfo22/Cordova-Plugin-Micro-Blink-ID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
71 lines (60 loc) · 3.36 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.os.mobile.blinkid"
version="0.0.3">
<name>Blink Id Plugin</name>
<description>Plugin Read Card ID and to Scan Documents</description>
<license>MIT License</license>
<keywords>cordova,outsystems, blinkid, microblink, cardID</keywords>
<repo></repo>
<issue></issue>
<js-module src="www/BlinkId.js" name="BlinkId">
<clobbers target="cordova.plugins.blinkId" />
<clobbers target="plugin.blinkId" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BlinkIdPlugin">
<param name="ios-package" value="BlinkIdPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/BlinkIdPlugin.h" />
<source-file src="src/ios/BlinkIdPlugin.m" />
<!-- MicroBlink frameworks -->
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/en.strings" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/IDCard.png" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/[email protected]" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/ocr_model.zzip" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/PPbeep.wav" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/torchoff_pressed.png" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/[email protected]" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/torchoff.png" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/[email protected]" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/torchon_pressed.png" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/[email protected]" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/torchon.png" />
<resource-file src="src/ios/libs/MicroBlink.embeddedframework/Resources/[email protected]" />
<framework src="src/ios/libs/MicroBlink.embeddedframework/MicroBlink.framework" custom="true" />
<!-- System frameworks -->
<framework src="libc++.dylib" weak="true" />
<framework src="libiconv.dylib" weak="true" />
<framework src="AVFoundation.framework" weak="true" />
<framework src="AudioToolbox.framework" weak="true" />
<framework src="CoreMedia.framework" weak="true" />
<framework src="OpenGLES.framework" weak="true" />
<framework src="QuartzCore.framework" weak="true" />
<framework src="CoreVideo.framework" weak="true" />
</platform>
<!-- Android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BlinkIdPlugin">
<param name="android-package" value="com.os.mobile.blinkid.BlinkIdPlugin"/>
</feature>
</config-file>
<source-file src="src/android/BlinkIdPlugin.java" target-dir="src/com/os/mobile/blinkid" />
<framework src="src/android/microblink.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>