forked from Attendee/barcodeGenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·44 lines (44 loc) · 2.03 KB
/
plugin.xml
File metadata and controls
executable file
·44 lines (44 loc) · 2.03 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
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-barcodegenerator" version="0.1.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>BarcodeGenerator</name>
<description>Barcode Generator is a cordova plugin that allows generation of barcodes like QRCODE, CODE128 etc.</description>
<author>fefc - fefc.dev@gmail.com - https://github.com/fefc fork from https://github.com/Attendee</author>
<license>MIT</license>
<keywords>cordova,barcode,generator</keywords>
<repo>https://github.com/fefc/BarcodeGenerator.git</repo>
<js-module name="BarcodeGenerator" src="www/BarcodeGenerator.js">
<clobbers target="BarcodeGenerator"/>
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="BarcodeGenerator">
<param name="android-package" value="com.attendee.barcodegenerator.BarcodeGenerator"/>
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"/>
<source-file src="src/android/BarcodeGenerator.java" target-dir="src/com/attendee/barcodegenerator"/>
<source-file src="src/android/core-3.2.1.jar" target-dir="libs"/>
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="BarcodeGenerator">
<param name="ios-package" value="BarcodeGenerator"/>
</feature>
</config-file>
<header-file src="src/ios/BarcodeGenerator.h" target-dir="src/com/attendee/barcodegenerator"/>
<source-file src="src/ios/BarcodeGenerator.m" target-dir="src/com/attendee/barcodegenerator"/>
</platform>
<platform name="browser">
<config-file parent="/*" target="config.xml">
<feature name="BarcodeGenerator">
<param name="browser-package" value="BarcodeGenerator"/>
</feature>
</config-file>
<js-module name="QRCode" src="src/browser/qrcode.min.js">
<clobbers target="QRCode"/>
</js-module>
<js-module src="src/browser/BarcodeGenerator.js" name="BarcodeGeneratorProxy">
<runs/>
</js-module>
</platform>
</plugin>