forked from icsfl/cordova-honeywell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
28 lines (27 loc) · 1.22 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.icsfl.rfsmart.honeywell"
version="1.0.5">
<name>HoneywellScanner</name>
<description>Honeywell Scanner Plugin</description>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/honeywell.js" name="HoneywellScannerPlugin">
<clobbers target="plugins.honeywell" />
</js-module>
<!--android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="HoneywellScannerPlugin">
<param name="android-package" value="com.icsfl.rfsmart.honeywell.HoneywellScannerPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="com.honeywell.decode.permission.DECODE" />
</config-file>
<source-file src="src/android/libs/DataCollection.jar" target-dir="libs" />
<source-file src="src/android/HoneywellScannerPlugin.java" target-dir="src/com/icsfl/rfsmart/honeywell" />
</platform>
</plugin>