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' }