Compare commits

..

5 Commits

Author SHA1 Message Date
TJ Woon
bc14607662
Update README.md 2020-10-01 22:29:19 +08:00
TJ Woon
2545e40ed6
Update README.md 2020-10-01 22:27:24 +08:00
Jacob
fc5dcc300b Update README.md 2017-01-13 14:15:42 -05:00
Daniel Cousens
31e2eda04b Merge pull request #83 from tylervz5/iOS_10
Fix for the plugin crashing on iOS 10
2016-09-17 16:22:21 +10:00
tylervz
b0342bfa4c Add NSCameraUsageDescription to info.plist when adding the plugin to the project. 2016-09-16 09:36:46 -05:00
2 changed files with 10 additions and 2 deletions

View File

@ -1,11 +1,13 @@
**This repository is looking for a maintainer! If you believe you are the right person, please [leave a comment](https://github.com/tjwoon/csZBar/issues/60)!** **This repository is unmaintained. Thank you to all collaborators who have helped to maintain it so far.**
~~**This repository is looking for a maintainer! If you believe you are the right person, please [leave a comment](https://github.com/tjwoon/csZBar/issues/60)!**~~
# ZBar Barcode Scanner Plugin # ZBar Barcode Scanner Plugin
This plugin integrates with the [ZBar](http://zbar.sourceforge.net/) library, This plugin integrates with the [ZBar](http://zbar.sourceforge.net/) library,
exposing a JavaScript interface for scanning barcodes (QR, 2D, etc). exposing a JavaScript interface for scanning barcodes (QR Code, EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 39, Interleaved 2 of 5, etc).
In this fork a button has been added to turn off and on device flash. In addition the plugin can now handle the device orientation change. In this fork a button has been added to turn off and on device flash. In addition the plugin can now handle the device orientation change.
## Installation ## Installation

View File

@ -71,6 +71,12 @@
<param name="ios-package" value="CsZBar"/> <param name="ios-package" value="CsZBar"/>
</feature> </feature>
</config-file> </config-file>
<!-- Declare Camera Usage for iOS10+ -->
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>For Barcode Scanning</string>
</config-file>
<framework src="AVFoundation.framework" /> <framework src="AVFoundation.framework" />
<framework src="CoreMedia.framework" /> <framework src="CoreMedia.framework" />
<framework src="CoreVideo.framework" /> <framework src="CoreVideo.framework" />