Begin with KitKat support

This commit is contained in:
Sebastián Katzer 2013-12-11 13:52:55 +01:00
parent 2c45468601
commit 01416e23b3
2 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@ by Sebastián Katzer ([github.com/katzer](https://github.com/katzer))
- **iOS** *(Print from iOS devices to AirPrint compatible printers)*<br> - **iOS** *(Print from iOS devices to AirPrint compatible printers)*<br>
See [Drawing and Printing Guide for iOS](http://developer.apple.com/library/ios/documentation/2ddrawing/conceptual/drawingprintingios/Printing/Printing.html) for detailed informations and screenshots. See [Drawing and Printing Guide for iOS](http://developer.apple.com/library/ios/documentation/2ddrawing/conceptual/drawingprintingios/Printing/Printing.html) for detailed informations and screenshots.
- **Android** *(Print through 3rd party printing apps)* - **Android** *(<= 4.3, Print through 3rd party printing apps)*
## Adding the Plugin to your project ## Adding the Plugin to your project
Through the [Command-line Interface](http://cordova.apache.org/docs/en/3.0.0/guide_cli_index.md.html#The%20Command-line%20Interface): Through the [Command-line Interface](http://cordova.apache.org/docs/en/3.0.0/guide_cli_index.md.html#The%20Command-line%20Interface):

View File

@ -42,6 +42,9 @@
<feature name="Printer"> <feature name="Printer">
<param name="android-package" value="de.appplant.cordova.plugin.Printer"/> <param name="android-package" value="de.appplant.cordova.plugin.Printer"/>
</feature> </feature>
<feature name="KitKatPrinter">
<param name="android-package" value="de.appplant.cordova.plugin.KitKatPrinter"/>
</feature>
</config-file> </config-file>
<source-file src="src/android/Printer.java" target-dir="src/de/appplant/cordova/plugin" /> <source-file src="src/android/Printer.java" target-dir="src/de/appplant/cordova/plugin" />