-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
63 lines (48 loc) · 2.33 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.silverchip.cordovaprinter"
version="1.0.0">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>CordovaPrinter</name>
<description>Print on a Zebra Printer</description>
<author>Silverchip</author>
<keywords>Zebra</keywords>
<license>Apache 2.0 License</license>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CordovaPrinter">
<param name="ios-package" value="CordovaPrinter" />
</feature>
</config-file>
<config-file target="*-Info.plist" parent="UISupportedExternalAccessoryProtocols">
<array>
<string>com.zebra.rawport</string>
</array>
</config-file>
<header-file src="src/CordovaPrinter.h" />
<source-file src="src/CordovaPrinter.m" />
<header-file src="src/zebra/include/MfiBtPrinterConnection.h" />
<header-file src="src/zebra/include/ZebraPrinterFactory.h" />
<header-file src="src/zebra/include/ZebraPrinterConnection.h" />
<header-file src="src/zebra/include/ZebraPrinter.h" />
<header-file src="src/zebra/include/FormatUtil.h" />
<header-file src="src/zebra/include/FileUtil.h" />
<header-file src="src/zebra/include/PrinterStatus.h" />
<header-file src="src/zebra/include/PrinterStatusMessages.h" />
<header-file src="src/zebra/include/ZplPrintMode.h" />
<header-file src="src/zebra/include/GraphicsUtil.h" />
<header-file src="src/zebra/include/DiscoveredPrinter.h" />
<header-file src="src/zebra/include/FieldDescriptionData.h" />
<header-file src="src/zebra/include/DiscoveredPrinterNetwork.h" />
<header-file src="src/zebra/include/MagCardReader.h" />
<header-file src="src/zebra/include/NetworkDiscoverer.h" />
<header-file src="src/zebra/include/SGD.h" />
<header-file src="src/zebra/include/SmartCardReader.h" />
<header-file src="src/zebra/include/ToolsUtil.h" />
<header-file src="src/zebra/include/TcpPrinterConnection.h" />
<source-file src="src/zebra/libZSDK_API.a" framework="true" />
<framework src="ExternalAccessory.framework" />
</platform>
</plugin>