forked from neo9-attic/cordova-honeywell-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
33 lines (25 loc) · 1.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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.jrlambs.cordova-honeywell-scanner6"
version="1.0.6">
<name>Honeywell AIDC Barcode Scanner</name>
<description>Honeywell TC50/D75E Barcode Scanner and external device using the com.honeywell.aidc SDK</description>
<keywords>cordova, honeywell, aidc, scanner, plugin, com.honeywell.aidc, sdk</keywords>
<js-module src="www/aidc.js" name="aidc">
<clobbers target="cordova.plugins.honeywell" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="com.honeywell.decode.permission.DECODE" />
</config-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="HoneywellAidc">
<param name="android-package" value="com.jrlambs.honeywell.Aidc" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/libs/HoneywellAidc.jar" target-dir="libs" />
<source-file src="src/android/Aidc.java" target-dir="src/com/jrlambs/honeywell" />
</platform>
</plugin>