-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
24 lines (19 loc) · 924 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="uk.co.juliand.scannerinput"
version="2.0.1">
<name>Scanner Input</name>
<description>Android input system for non-standard input devices like barcode scanners</description>
<js-module src="www/ScannerInputPlugin.js" name="ScannerInputPlugin">
<clobbers target="navigator.scannerinput" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ScannerInputPlugin">
<param name="android-package" value="uk.co.juliand.scannerinput.ScannerInputPlugin"/>
</feature>
</config-file>
<source-file src="src/android/ScannerInputPlugin.java" target-dir="src/uk/co/juliand/scannerinput/"/>
<source-file src="src/android/ScannerInputView.java" target-dir="src/uk/co/juliand/scannerinput/"/>
</platform>
</plugin>