forked from dff-solutions/dff-cordova-plugin-honeywell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
61 lines (53 loc) · 6.12 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" ?>
<plugin id="dff-cordova-plugin-honeywell" version="1.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Honeywell</name>
<description>Honeywell Plugin</description>
<author>dff solutions</author>
<keywords>phonegap,cordova,honeywell,dff</keywords>
<js-module name="honeywell" src="www/honeywell.js">
<clobbers target="Honeywell"/>
</js-module>
<dependency id="dff-cordova-plugin-common" url="https://github.com/dff-solutions/dff.CordovaPlugin.Common.git"/>
<!-- android -->
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="Honeywell">
<param name="android-package" value="com.dff.cordova.plugin.honeywell.HoneywellPlugin"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<config-file parent="/manifest" target="AndroidManifest.xml">
<uses-permission android:name="com.honeywell.decode.permission.DECODE"/>
</config-file>
<lib-file src="libs/DataCollection.jar"/>
<framework custom="true" src="build-honeywell-plugin.gradle" type="gradleReference"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/HoneywellPlugin.java" target-dir="src/com/dff/cordova/plugin/honeywell"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/BarcodeCallbackHandler.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/BarcodeDeviceCallbackHandler.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/BarcodeDeviceListener.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/BarcodeListener.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/FailureCallbackHandler.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderAim.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderDecode.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderGetAllDefaultProperties.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderGetAllProperties.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderGetInfo.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderGetProfileNames.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderGetProperties.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderLight.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderLoadProfile.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderPressSoftwareTrigger.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/BarcodeReaderSetProperties.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/CloseBarcodeReader.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/CreateBTBarcodeReader.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/CreateBarcodeReader.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/HoneywellAction.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/ListBarcodeDevices.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/barcode/action/ListConnectedBarcodeDevices.java" target-dir="src/com/dff/cordova/plugin/honeywell/barcode/action"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/common/BarcodeReaderManager.java" target-dir="src/com/dff/cordova/plugin/honeywell/common"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/common/GsonNamingStrategy.java" target-dir="src/com/dff/cordova/plugin/honeywell/common"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/json/model/JsonBarcodeEvent.java" target-dir="src/com/dff/cordova/plugin/honeywell/json/model"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/json/model/JsonFailureEvent.java" target-dir="src/com/dff/cordova/plugin/honeywell/json/model"/>
<source-file src="src/main/java/com/dff/cordova/plugin/honeywell/json/model/JsonPoint.java" target-dir="src/com/dff/cordova/plugin/honeywell/json/model"/>
</platform>
</plugin>