cordova-plugin-printer/plugin.xml
Sebastián Katzer fc2bbeca53 Prefix classes
2019-01-29 01:39:49 +01:00

128 lines
4.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
* 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"
xmlns:android="http://schemas.android.com/apk/res/android"
version="0.8.0.alpha">
<name>Printer</name>
<description>Prints HTML content</description>
<repo>https://github.com/katzer/cordova-plugin-printer.git</repo>
<keywords>appplant, printer, cordova</keywords>
<license>Apache 2.0</license>
<author>Sebastián Katzer</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/APPPrinterStyle.h" />
<source-file src="src/ios/APPPrinterStyle.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/AssetUtil.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/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/PrintPdfAdapter.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>
</plugin>