cordova-plugin-printer/plugin.xml
Sebastián Katzer 10a118cb3b Added meta data
2013-08-10 16:12:20 +02:00

38 lines
962 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="de.appplant.maintcall.cordova.plugin.printer"
version="0.0.1">
<name>Printer</name>
<description>A bunch of printer plugins for Cordova 3.x.x</description>
<keywords>print, printer, ios</keywords>
<license>GPL v2 License</license>
<author>Sebastián Katzer (github.com/katzer)</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Printer">
<param name="ios-package" value="CDVPrinter"/>
</feature>
</config-file>
<js-module src="www/printer.js" name="printer">
<clobbers target="plugin.printer" />
</js-module>
<header-file src="src/ios/CDVPrinter.h" />
<source-file src="src/ios/CDVPrinter.m" />
</platform>
</plugin>