From b74a82acfe94b64d9373aec392732af072e97e4f Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Sun, 29 Oct 2017 13:09:37 -0700 Subject: [PATCH] Updated readme, updated android lib to latest version --- README.md | 8 +++++++- android/build.gradle | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f927767..1422f85 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,18 @@ # Barcode Scanner -A flutter plugin for scanning 2D barcodes and QR codes +A flutter plugin for scanning 2D barcodes and QR codes. + +This provides a simple wrapper for two commonly used iOS and Android libraries: + +iOS: https://github.com/mikebuss/MTBBarcodeScanner +Android: https://github.com/dm77/barcodescanner ### Features - [x] Scan 2D barcodes - [x] Scan QR codes - [x] Control the flash while scanning - [ ] Customize the permission request text +- [ ] Support multiple barcode libraries ## Getting Started diff --git a/android/build.gradle b/android/build.gradle index eabc043..60f5b15 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -47,6 +47,6 @@ android { dependencies { compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4' - compile 'me.dm7.barcodescanner:zxing:1.8.4' + compile 'me.dm7.barcodescanner:zxing:1.9.8' compile 'com.android.support:design:25.4.0' }