cordova-plugin-printer/plugin.xml

62 lines
1.7 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
2013-12-11 22:52:49 +08:00
xmlns:android="http://schemas.android.com/apk/res/android"
2013-08-10 22:13:04 +08:00
id="de.appplant.cordova.plugin.printer"
2015-04-23 15:25:56 +08:00
version="0.7.1">
2014-09-12 18:04:37 +08:00
<name>Printer</name>
2014-09-08 04:53:04 +08:00
<description>
Cordova plugin to print HTML documents using AirPrint
2014-09-08 04:53:04 +08:00
and Android Printing Framework.
</description>
<repo>
https://github.com/katzer/cordova-plugin-printer.git
</repo>
<keywords>
print, printer, ios, android, google cloud, air print
</keywords>
2013-12-11 20:00:16 +08:00
<license>Apache 2.0</license>
2013-08-10 22:12:20 +08:00
2013-12-11 20:00:16 +08:00
<author>Sebastián Katzer</author>
2013-08-10 22:12:20 +08:00
2014-09-08 04:53:04 +08:00
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- interface -->
2013-08-21 00:35:19 +08:00
<js-module src="www/printer.js" name="Printer">
<clobbers target="plugin.printer" />
2014-09-08 04:53:04 +08:00
<clobbers target="cordova.plugins.printer" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
2014-09-08 04:53:04 +08:00
<feature name="Printer">
<param name="ios-package" value="APPPrinter"/>
</feature>
</config-file>
2013-08-21 00:35:19 +08:00
<header-file src="src/ios/APPPrinter.h" />
<source-file src="src/ios/APPPrinter.m" />
</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.Printer"/>
2013-08-21 00:27:33 +08:00
</feature>
</config-file>
<source-file src="src/android/Printer.java" target-dir="src/de/appplant/cordova/plugin/printer" />
2013-08-21 00:27:33 +08:00
</platform>
</plugin>