-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
121 lines (89 loc) · 3.99 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-printer"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
version="1.0.0">
<name>Printer</name>
<description>Prints HTML content</description>
<repo>https://github.com/slogivewd/cordova-plugin-printer.git</repo>
<keywords>appplant, printer, cordova</keywords>
<license>Apache 2.0</license>
<author>Cesar Fonseca</author>
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.0.0" />
<engine name="android-sdk" version=">=19" />
<engine name="apple-ios" version=">=8.0" />
</engines>
<!-- interface -->
<js-module src="www/printer.js" name="Printer">
<clobbers target="cordova.plugins.printer" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Printer">
<param name="ios-package" value="APPPrinter" />
</feature>
</config-file>
<header-file src="src/ios/APPPrinter.h" />
<source-file src="src/ios/APPPrinter.m" />
<header-file src="src/ios/APPPrinterInfo.h" />
<source-file src="src/ios/APPPrinterInfo.m" />
<header-file src="src/ios/APPPrinterItem.h" />
<source-file src="src/ios/APPPrinterItem.m" />
<header-file src="src/ios/APPPrinterLayout.h" />
<source-file src="src/ios/APPPrinterLayout.m" />
<header-file src="src/ios/APPPrinterPaper.h" />
<source-file src="src/ios/APPPrinterPaper.m" />
<header-file src="src/ios/APPPrinterRenderer.h" />
<source-file src="src/ios/APPPrinterRenderer.m" />
<header-file src="src/ios/APPPrinterFont.h" />
<source-file src="src/ios/APPPrinterFont.m" />
<header-file src="src/ios/APPPrinterUnit.h" />
<source-file src="src/ios/APPPrinterUnit.m" />
<header-file src="src/ios/UIPrintInteractionController+APPPrinter.h" />
<source-file src="src/ios/UIPrintInteractionController+APPPrinter.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Printer">
<param name="android-package" value="de.appplant.cordova.plugin.printer.Printer" />
</feature>
</config-file>
<preference name="ANDROID_SUPPORT_V4_VERSION" default="28.+" />
<framework src="com.android.support:support-v4:$ANDROID_SUPPORT_V4_VERSION" />
<source-file src="src/android/PrintAdapter.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
<source-file src="src/android/PrintContent.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
<source-file src="src/android/Printer.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
<source-file src="src/android/PrintIO.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
<source-file src="src/android/PrintManager.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
<source-file src="src/android/PrintOptions.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
<source-file src="src/android/PrintProxy.java"
target-dir="src/de/appplant/cordova/plugin/printer" />
</platform>
<!-- windows -->
<platform name="windows">
<js-module src="src/windows/PrinterProxy.js" name="PrinterProxy">
<merges target="" />
</js-module>
</platform>
<!-- browser -->
<platform name="browser">
<config-file target="config.xml" parent="/*">
<feature name="Printer">
<param name="browser-package" value="Printer" />
</feature>
</config-file>
<js-module src="src/browser/PrinterProxy.js" name="Printer.Proxy">
<runs />
</js-module>
</platform>
</plugin>