forked from DavidBriglio/cordova-plugin-ios-simple-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
24 lines (24 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns=""
id="cordova-plugin-ios-simple-scanner" version="1.2.1">
<name>iOS Simple Barcode Scanner</name>
<author>David Briglio</author>
<description>Simple barcode scanner for iOS (PDF417 and QR Codes Supported).</description>
<license>MIT</license>
<keywords>cordova,simple,scanner,ios,pdf417,qr</keywords>
<js-module src="www/scanner.js" name="zBar">
<clobbers target="cloudSky.zBar" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BarcodeScanner">
<param name="ios-package" value="BarcodeScanner"/>
</feature>
</config-file>
<source-file src="src/BarcodeScanner.swift" />
<source-file src="src/BarcodeScannerController.swift" />
<resource-file src="img/ios7-bolt-white.png" target="ios7-bolt-white.png"/>
<resource-file src="img/ios7-bolt-outline-white.png" target="ios7-bolt-outline-white.png"/>
<resource-file src="img/ios7-close-empty-white.png" target="ios7-close-empty-white.png"/>
</platform>
</plugin>