mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-15 01:29:19 +08:00
14a744d0af
Android: Kotlin Package: `com.apptreesoftware.barcodescan` -> `de.mintware.barcode_scan` Manifest-Package: `com.yourcompany.barcodescan` -> `de.mintware.barcodescan` Activity: `com.apptreesoftware.barcodescan.BarcodeScannerActivity` -> `de.mintware.barcode_scan.BarcodeScannerActivity` iOS: Bundle ID: `com.apptreesoftware.barcode.plugin.example` -> `de.mintware.barcode_scan.plugin.example` Flutter: Method channel: `com.apptreesoftware.barcode_scan` -> `de.mintware.barcode_scan` pubspec.yaml: - homepage updated - deprecated author entry removed - comments removed - flutter.plugin.androidPackage: `com.apptreesoftware.barcode_scan` -> `de.mintware.barcode_scan` README.md updated and UPGRADE.md added
76 lines
2.3 KiB
Markdown
76 lines
2.3 KiB
Markdown
[![GitHub license](https://img.shields.io/github/license/mintware-de/flutter_barcode_reader.svg)](https://github.com/mintware-de/flutter_barcode_reader/blob/master/LICENSE)
|
|
[![GitHub stars](https://img.shields.io/github/stars/mintware-de/flutter_barcode_reader)](https://github.com/mintware-de/flutter_barcode_reader/stargazers)
|
|
[![Pub](https://img.shields.io/pub/v/barcode_scan.svg)](https://pub.dartlang.org/packages/barcode_scan)
|
|
[![GitHub forks](https://img.shields.io/github/forks/mintware-de/flutter_barcode_reader)](https://github.com/mintware-de/flutter_barcode_reader/network)
|
|
|
|
# Barcode Scanner
|
|
|
|
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
|
|
- [x] Permission handling
|
|
|
|
## Getting Started
|
|
|
|
### Android
|
|
For Android, you must do the following before you can use the plugin:
|
|
|
|
* Add the camera permission to your AndroidManifest.xml
|
|
|
|
`<uses-permission android:name="android.permission.CAMERA" />`
|
|
|
|
* This plugin is written in Kotlin. Therefore, you need to add Kotlin support to your project. See [installing the Kotlin plugin](https://kotlinlang.org/docs/tutorials/kotlin-android.html#installing-the-kotlin-plugin).
|
|
|
|
Edit your project-level build.gradle file to look like this:
|
|
```groovy
|
|
buildscript {
|
|
ext.kotlin_version = '1.3.61'
|
|
// ...
|
|
dependencies {
|
|
// ...
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
// ...
|
|
```
|
|
|
|
Edit your app-level build.gradle file to look like this:
|
|
|
|
```groovy
|
|
apply plugin: 'kotlin-android'
|
|
// ...
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
// ...
|
|
}
|
|
```
|
|
|
|
Now you can depend on the barcode_scan plugin in your pubspec.yaml file:
|
|
|
|
```yaml
|
|
dependencies:
|
|
# ...
|
|
barcode_scan: any
|
|
```
|
|
Click "Packages get" in Android Studio or run `flutter packages get` in your project folder.
|
|
|
|
### iOS
|
|
To use on iOS, you must add the the camera usage description to your Info.plist
|
|
|
|
```xml
|
|
<dict>
|
|
<!-- ... -->
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Camera permission is required for barcode scanning.</string>
|
|
<!-- ... -->
|
|
</dict>
|
|
``` |