Skip to content

Commit 6d37ed8

Browse files
author
Matthew Smith
committed
Android X Support
bumping version to 1.0
1 parent b2900df commit 6d37ed8

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.0] - 8/30/18
2+
3+
Breaking Change: Adds support for AndroidX
4+
15
## [0.0.8] - 8/30/18
26

37
* Fixes [iOS: pressing cancel doesn't stop scanning](https://github.com/apptreesoftware/flutter_barcode_reader/issues/60) thanks to @tgezginis.

Diff for: android/build.gradle

+3-9
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@ version '1.0-SNAPSHOT'
33

44
buildscript {
55
repositories {
6-
jcenter()
7-
maven {
8-
url "https://maven.google.com"
9-
}
106
google()
7+
jcenter()
118
}
129

1310
dependencies {
@@ -19,9 +16,6 @@ buildscript {
1916
rootProject.allprojects {
2017
repositories {
2118
jcenter()
22-
maven {
23-
url "https://maven.google.com"
24-
}
2519
google()
2620
}
2721
}
@@ -49,7 +43,7 @@ android {
4943

5044
dependencies {
5145
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'
5448
api 'com.google.android.material:material:1.0.0'
5549
}

Diff for: android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
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

Diff for: barcode_scan.iml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module type="WEB_MODULE" version="4">
2+
<module type="JAVA_MODULE" version="4">
33
<component name="NewModuleRootManager" inherit-compiler-output="true">
44
<exclude-output />
55
<content url="file://$MODULE_DIR$">
66
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
7+
<excludeFolder url="file://$MODULE_DIR$/.dart_tool" />
78
<excludeFolder url="file://$MODULE_DIR$/.idea" />
89
<excludeFolder url="file://$MODULE_DIR$/.pub" />
910
<excludeFolder url="file://$MODULE_DIR$/build" />
11+
<excludeFolder url="file://$MODULE_DIR$/example/.dart_tool" />
1012
<excludeFolder url="file://$MODULE_DIR$/example/.pub" />
1113
<excludeFolder url="file://$MODULE_DIR$/example/build" />
1214
</content>

Diff for: pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: barcode_scan
22
description: A flutter plugin for scanning 2D barcodes and QRCodes.
3-
version: 0.0.8
3+
version: 1.0.0
44
author: Matthew Smith<[email protected]>
55
homepage: https://github.com/apptreesoftware/flutter_barcode_reader
66

0 commit comments

Comments
 (0)