-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
66 lines (51 loc) · 1.95 KB
/
plugin.xml
File metadata and controls
66 lines (51 loc) · 1.95 KB
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
<?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="com.rhinoda.cordova.plugin.printer"
version="0.7.1">
<name>Printer</name>
<description>
Cordova plugin to print HTML documents using AirPrint
and Android Printing Framework.
</description>
<repo>
https://github.com/ntunin/CordovaFreePrinter.git
</repo>
<keywords>
print, printer, ios, android, google cloud, air print
</keywords>
<license>Apache 2.0</license>
<author>Nik tyunin</author>
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- interface -->
<js-module src="www/printer.js" name="Printer">
<clobbers target="plugin.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="FreePrinter"/>
</feature>
</config-file>
<header-file src="src/ios/FreePrinter.h" />
<source-file src="src/ios/FreePrinter.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Printer">
<param name="android-package" value="com.rhinoda.cordova.plugin.printer.Printer"/>
</feature>
</config-file>
<source-file src="src/android/Printer.java" target-dir="src/com/rhinoda/cordova/plugin/printer" />
<framework src="com.android.support:support-v4:23.0.1" />
<framework src="com.android.support:appcompat-v7:23.0.1" />
<framework src="com.dynamixsoftware.intentapi:intentAPI:7.4.5" />
<framework src="com.dynamixsoftware.printingsdk:printingSDK:7.4.5" />
</platform>
</plugin>