-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
51 lines (40 loc) · 1.5 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="sk.entropia.cordova.brother-print"
version="0.2.1">
<name>Brother QL-720NW Printer</name>
<description>
Cordova plugin to print HTML documents using Brother print SDK to QL-720NW printer.
</description>
<repo>
https://github.com/peterkajan/cordova-plugin-brother-print
</repo>
<keywords>
print, printer, ios, QL-720NW, QL-810W, Brother,
</keywords>
<license>Apache 2.0</license>
<author>Peter Kajan</author>
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- interface -->
<js-module src="www/printer.js" name="BrotherPrinter">
<clobbers target="plugin.brohterPrint" />
<clobbers target="cordova.plugins.brohterPrint" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BrotherPrinter">
<param name="ios-package" value="APPPrinter"/>
</feature>
</config-file>
<header-file src="src/ios/APPPrinter.h" />
<source-file src="src/ios/APPPrinter.m" />
<framework src="res/ios/BRPtouchPrinterKit.framework" custom="true"/>
<framework src="SystemConfiguration.framework" />
<framework src="ExternalAccessory.framework" />
</platform>
</plugin>