2013-08-10 00:58:47 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
2013-08-10 22:13:04 +08:00
|
|
|
id="de.appplant.cordova.plugin.printer"
|
2013-08-25 01:51:28 +08:00
|
|
|
version="0.4.0">
|
2013-08-10 00:58:47 +08:00
|
|
|
|
|
|
|
<name>Printer</name>
|
|
|
|
|
2013-08-10 22:15:11 +08:00
|
|
|
<description>A bunch of printig plugins for Cordova 3.x.x</description>
|
2013-08-25 01:51:28 +08:00
|
|
|
<keywords>print, printer, ios, android</keywords>
|
2013-08-10 22:12:20 +08:00
|
|
|
<license>GPL v2 License</license>
|
|
|
|
|
|
|
|
<author>Sebastián Katzer (github.com/katzer)</author>
|
|
|
|
|
2013-08-10 00:58:47 +08:00
|
|
|
<engines>
|
|
|
|
<engine name="cordova" version=">=3.0.0" />
|
|
|
|
</engines>
|
|
|
|
|
2013-08-21 00:24:13 +08:00
|
|
|
<!-- interface -->
|
2013-08-21 00:35:19 +08:00
|
|
|
<js-module src="www/printer.js" name="Printer">
|
|
|
|
<clobbers target="plugin.printer" />
|
2013-08-21 00:24:13 +08:00
|
|
|
</js-module>
|
|
|
|
|
2013-08-10 00:58:47 +08:00
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
|
|
|
|
<config-file target="config.xml" parent="/*">
|
2013-08-21 00:35:19 +08:00
|
|
|
<feature name="Printer">
|
|
|
|
<param name="ios-package" value="APPPrinter"/>
|
|
|
|
</feature>
|
2013-08-10 00:58:47 +08:00
|
|
|
</config-file>
|
|
|
|
|
2013-08-21 00:35:19 +08:00
|
|
|
<header-file src="src/ios/APPPrinter.h" />
|
|
|
|
<source-file src="src/ios/APPPrinter.m" />
|
2013-08-10 00:58:47 +08:00
|
|
|
|
|
|
|
</platform>
|
|
|
|
|
2013-08-21 00:27:33 +08:00
|
|
|
<!-- 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"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="src/android/Printer.java" target-dir="src/de/appplant/cordova/plugin" />
|
|
|
|
</platform>
|
|
|
|
|
2013-08-10 00:58:47 +08:00
|
|
|
</plugin>
|