-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin.xml
27 lines (27 loc) · 1.47 KB
/
plugin.xml
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
<?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-honeywell-barcode-scanner" version="0.0.11">
<name>HoneywellBarcodeScanner</name>
<description>Cordova plugin for Android Honeywell barcode scanner.</description>
<license>MIT</license>
<keywords>cordova,honeywell,android,barcode,scanner</keywords>
<js-module name="HoneywellBarcodeScanner" src="www/honeywellBarcodeScanner.js">
<clobbers target="cordova.plugins.honeywell.barcode" />
</js-module>
<engines>
<engine name="cordova" version=">=3.6.0"></engine>
</engines>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="HoneywellBarcodeScannerPlugin">
<param name="android-package" value="za.co.palota.honeywell.HoneywellBarcodeScannerPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="com.honeywell.decode.permission.DECODE" />
</config-file>
<framework src="src/android/plugin.gradle" custom="true" type="gradleReference" />
<resource-file src="src/android/libs/DataCollection.aar" target="libs/DataCollection.aar" />
<source-file src="src/android/HoneywellBarcodeScannerPlugin.java" target-dir="src/za/co/palota/honeywell" />
</platform>
</plugin>