forked from BlueFletch/cordova-plugin-honeywell-captuvo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·43 lines (34 loc) · 1.51 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.bluefletch.honeywell.captuvo"
version="0.1">
<name>CaptuvoCDV</name>
<description>Honeywell Captuvo Cordova plugin</description>
<license>MIT</license>
<keywords>captuvo,magstripe,msr,barcode</keywords>
<repo>https://github.com/BlueFletch/cordova-plugin-honeywell-captuvo.git</repo>
<issue></issue>
<js-module src="www/CaptuvoCDV.js" name="CaptuvoCDV">
<clobbers target="captuvo" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CaptuvoCDV">
<param name="ios-package" value="CaptuvoCDV" />
</feature>
</config-file>
<header-file src="src/ios/Captuvo.h" />
<header-file src="src/ios/CaptuvoCDV.h" />
<source-file src="src/ios/CaptuvoCDV.m" />
<source-file src="src/ios/libCaptuvoSDK.a" framework="true" compiler-flags="-fno-objc-arc"/>
<framework src="ExternalAccessory.framework" />
<config-file target="*-Info.plist" parent="UISupportedExternalAccessoryProtocols">
<array>
<string>com.honeywell.scansled.protocol.decoder</string>
<string>com.honeywell.scansled.protocol.msr</string>
<string>com.honeywell.scansled.protocol.pm</string>
</array>
</config-file>
</platform>
</plugin>