-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (24 loc) · 876 Bytes
/
Copy pathplugin.xml
File metadata and controls
33 lines (24 loc) · 876 Bytes
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://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-qrscan"
version="1.0.0">
<name>qrscan</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/QRScan.js" target="js/QRScan.js"/>
<js-module src="www/QRScan.js" name="QRScan">
<clobbers target="qrscan" />
</js-module>
<platform name="android">
<framework src="com.journeyapps:zxing-android-embedded:4.3.0@aar" />
<framework src="com.google.zxing:core:3.4.1" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="QRScan">
<param name="android-package" value="de.mopsdom.qrscan.QRScan"/>
<!--param name="onload" value="true"/-->
</feature>
</config-file>
<source-file src="src/android/QRScan.java" target-dir="src/de/mopsdom/qrscan"/>
</platform>
</plugin>