-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
31 lines (26 loc) · 1.18 KB
/
plugin.xml
File metadata and controls
31 lines (26 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-bluetoothprinter" version="1.0.0">
<name>BluetoothPrinter</name>
<description>A cordova plugin for bluetooth printer for android platform.</description>
<license>Apache 2.0</license>
<keywords>cordova, bluetooth, printer, pos, text, barcode, image, base64, qrcode</keywords>
<author>Codivoire</author>
<js-module src="www/BluetoothPrinter.js" name="BluetoothPrinter">
<clobbers target="BluetoothPrinter" />
</js-module>
<platform name="android">
<source-file src="src/android/com/codivoire/BluetoothPrinter.java" target-dir="src/com/codivoire" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BluetoothPrinter">
<param name="android-package" value="com.codivoire.BluetoothPrinter"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.BLUETOOTH" />
</config-file>
</platform>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
</plugin>