-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
31 lines (24 loc) · 1.14 KB
/
plugin.xml
File metadata and controls
31 lines (24 loc) · 1.14 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-cipherlab" version="1.0.0">
<name>cordova-plugin-cipherlab</name>
<description>A Cipherlab barcode scanner plugin</description>
<license>GPL-2.0-only</license>
<keywords>cordova, plugin, cipherlabs</keywords>
<repo>https://github.com/perfact/cordova-plugin-cipherlab.git</repo>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<platform name="android">
<source-file src="src/android/CipherlabScanner.java" target-dir="src/de/perfact/cordova/cipherlab" />
<source-file src="src/android/BarcodeAPI_V1_1_60.jar" target-dir="app/libs" />
<config-file target="config.xml" parent="/*">
<feature name="CipherlabScanner">
<param name="android-package" value="de.perfact.cordova.cipherlab.CipherlabScanner" />
</feature>
</config-file>
<js-module src="www/cipherlabscanner.js" name="CipherlabScanner">
<clobbers target="window.CipherlabScanner" />
</js-module>
</platform>
</plugin>