2013-08-10 00:58:47 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2016-07-21 01:58:05 +08:00
|
|
|
<!--
|
|
|
|
* Copyright (c) 2013-2016 by appPlant GmbH. All rights reserved.
|
|
|
|
*
|
|
|
|
* @APPPLANT_LICENSE_HEADER_START@
|
|
|
|
*
|
|
|
|
* This file contains Original Code and/or Modifications of Original Code
|
|
|
|
* as defined in and that are subject to the Apache License
|
|
|
|
* Version 2.0 (the 'License'). You may not use this file except in
|
|
|
|
* compliance with the License. Please obtain a copy of the License at
|
|
|
|
* http://opensource.org/licenses/Apache-2.0/ and read it before using this
|
|
|
|
* file.
|
|
|
|
*
|
|
|
|
* The Original Code and all software distributed under the License are
|
|
|
|
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
|
|
|
|
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
|
|
|
|
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
|
|
|
|
* Please see the License for the specific language governing rights and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* @APPPLANT_LICENSE_HEADER_END@
|
|
|
|
-->
|
|
|
|
|
|
|
|
<plugin id="cordova-plugin-printer"
|
|
|
|
xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2013-12-11 22:52:49 +08:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-07-21 01:58:05 +08:00
|
|
|
version="0.7.2-dev">
|
2013-08-10 00:58:47 +08:00
|
|
|
|
2014-09-12 18:04:37 +08:00
|
|
|
<name>Printer</name>
|
2014-09-08 04:53:04 +08:00
|
|
|
|
2016-07-21 01:58:05 +08:00
|
|
|
<description>Prints HTML documents</description>
|
2014-09-08 04:53:04 +08:00
|
|
|
|
2016-07-21 01:58:05 +08:00
|
|
|
<repo>https://github.com/katzer/cordova-plugin-printer.git</repo>
|
2014-09-08 04:53:04 +08:00
|
|
|
|
2016-07-21 01:58:05 +08:00
|
|
|
<keywords>appplant, printer, cordova</keywords>
|
2013-08-10 00:58:47 +08:00
|
|
|
|
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 -->
|
2013-08-10 00:58:47 +08:00
|
|
|
<engines>
|
2016-07-21 01:58:05 +08:00
|
|
|
<engine name="cordova" version=">=6.0.0" />
|
2013-08-10 00:58:47 +08:00
|
|
|
</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" />
|
2014-09-08 04:53:04 +08:00
|
|
|
<clobbers target="cordova.plugins.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="/*">
|
2014-09-08 04:53:04 +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">
|
2013-12-11 21:05:15 +08:00
|
|
|
<param name="android-package" value="de.appplant.cordova.plugin.printer.Printer"/>
|
2013-08-21 00:27:33 +08:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2016-07-21 01:58:05 +08:00
|
|
|
<source-file src="src/android/Printer.java"
|
|
|
|
target-dir="src/de/appplant/cordova/plugin/printer" />
|
2013-08-21 00:27:33 +08:00
|
|
|
</platform>
|
2013-08-10 00:58:47 +08:00
|
|
|
</plugin>
|