mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-23 04:09:19 +08:00
Merge pull request #16 from apptreesoftware/gradle-updates
update support:design to 27.1.1, compileSdkVersion to 27
This commit is contained in:
commit
eeea92e52f
17
CHANGELOG.md
17
CHANGELOG.md
@ -1,13 +1,18 @@
|
|||||||
## [0.0.1] - 10/29/17
|
## [0.0.4] - 2/8/17
|
||||||
|
|
||||||
* Supports 2D & QR Codes
|
* Fix missing gradle dependency (thanks to [toteto](https://github.com/apptreesoftware/flutter_barcode_reader/pull/15))
|
||||||
* Control flash while scanning
|
* Update gradle dependencies
|
||||||
|
|
||||||
|
## [0.0.3] - 2/8/17
|
||||||
|
|
||||||
|
* Improved permission handling (thanks to [BenSower](https://github.com/BenSower))
|
||||||
|
* Added MIT license
|
||||||
|
|
||||||
## [0.0.2] - 11/7/17
|
## [0.0.2] - 11/7/17
|
||||||
|
|
||||||
* Rewrite iOS scanner in Objective-C to avoid Swift use_frameworks! conflicts with other plugins (see https://github.com/flutter/flutter/issues/10968)
|
* Rewrite iOS scanner in Objective-C to avoid Swift use_frameworks! conflicts with other plugins (see https://github.com/flutter/flutter/issues/10968)
|
||||||
|
|
||||||
## [0.0.3] - 2/8/17
|
## [0.0.1] - 10/29/17
|
||||||
|
|
||||||
* Improved permission handling (thanks to [BenSower](https://github.com/BenSower))
|
* Supports 2D & QR Codes
|
||||||
* Added MIT license
|
* Control flash while scanning
|
||||||
|
@ -28,8 +28,8 @@ apply plugin: 'com.android.library'
|
|||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 25
|
compileSdkVersion 27
|
||||||
buildToolsVersion '25.0.3'
|
buildToolsVersion '27.0.3'
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main.java.srcDirs += 'src/main/kotlin'
|
main.java.srcDirs += 'src/main/kotlin'
|
||||||
@ -49,5 +49,5 @@ android {
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4'
|
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4'
|
||||||
compile 'me.dm7.barcodescanner:zxing:1.9.8'
|
compile 'me.dm7.barcodescanner:zxing:1.9.8'
|
||||||
compile 'com.android.support:design:25.4.0'
|
compile 'com.android.support:design:27.1.1'
|
||||||
}
|
}
|
||||||
|
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: barcode_scan
|
name: barcode_scan
|
||||||
description: A flutter plugin for scanning 2D barcodes and QRCodes.
|
description: A flutter plugin for scanning 2D barcodes and QRCodes.
|
||||||
version: 0.0.3
|
version: 0.0.4
|
||||||
author: Matthew Smith<matthew.smith@apptreesoftware.com>
|
author: Matthew Smith<matthew.smith@apptreesoftware.com>
|
||||||
homepage: https://github.com/apptreesoftware/flutter_barcode_reader
|
homepage: https://github.com/apptreesoftware/flutter_barcode_reader
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user