File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 1.0.0] - 8/30/18
2
+
3
+ Breaking Change: Adds support for AndroidX
4
+
1
5
## [ 0.0.8] - 8/30/18
2
6
3
7
* Fixes [ iOS: pressing cancel doesn't stop scanning] ( https://github.com/apptreesoftware/flutter_barcode_reader/issues/60 ) thanks to @tgezginis .
Original file line number Diff line number Diff line change @@ -3,11 +3,8 @@ version '1.0-SNAPSHOT'
3
3
4
4
buildscript {
5
5
repositories {
6
- jcenter()
7
- maven {
8
- url " https://maven.google.com"
9
- }
10
6
google()
7
+ jcenter()
11
8
}
12
9
13
10
dependencies {
@@ -19,9 +16,6 @@ buildscript {
19
16
rootProject. allprojects {
20
17
repositories {
21
18
jcenter()
22
- maven {
23
- url " https://maven.google.com"
24
- }
25
19
google()
26
20
}
27
21
}
@@ -49,7 +43,7 @@ android {
49
43
50
44
dependencies {
51
45
implementation ' androidx.appcompat:appcompat:1.0.2'
52
- implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.51 '
53
- implementation ' me.dm7.barcodescanner:zxing:1.9.8 '
46
+ implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.20 '
47
+ implementation ' me.dm7.barcodescanner:zxing:1.9.13 '
54
48
api ' com.google.android.material:material:1.0.0'
55
49
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.2 -all.zip
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <module type =" WEB_MODULE " version =" 4" >
2
+ <module type =" JAVA_MODULE " version =" 4" >
3
3
<component name =" NewModuleRootManager" inherit-compiler-output =" true" >
4
4
<exclude-output />
5
5
<content url =" file://$MODULE_DIR$" >
6
6
<sourceFolder url =" file://$MODULE_DIR$/lib" isTestSource =" false" />
7
+ <excludeFolder url =" file://$MODULE_DIR$/.dart_tool" />
7
8
<excludeFolder url =" file://$MODULE_DIR$/.idea" />
8
9
<excludeFolder url =" file://$MODULE_DIR$/.pub" />
9
10
<excludeFolder url =" file://$MODULE_DIR$/build" />
11
+ <excludeFolder url =" file://$MODULE_DIR$/example/.dart_tool" />
10
12
<excludeFolder url =" file://$MODULE_DIR$/example/.pub" />
11
13
<excludeFolder url =" file://$MODULE_DIR$/example/build" />
12
14
</content >
Original file line number Diff line number Diff line change 1
1
name : barcode_scan
2
2
description : A flutter plugin for scanning 2D barcodes and QRCodes.
3
- version : 0 .0.8
3
+ version : 1 .0.0
4
4
author :
Matthew Smith<[email protected] >
5
5
homepage : https://github.com/apptreesoftware/flutter_barcode_reader
6
6
You can’t perform that action at this time.
0 commit comments