Browse Source

Bump zxing to 4.0.2

flutter-beta
Dominik Spicher 6 years ago
parent
commit
348fe0934e
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      android/build.gradle
  2. +1
    -1
      example/android/app/build.gradle

+ 2
- 2
android/build.gradle View File

@@ -34,7 +34,7 @@ android {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }
defaultConfig { defaultConfig {
minSdkVersion 21
minSdkVersion 24
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
lintOptions { lintOptions {
@@ -47,5 +47,5 @@ android {


dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.journeyapps:zxing-android-embedded:3.5.0"
implementation "com.journeyapps:zxing-android-embedded:4.0.2"
} }

+ 1
- 1
example/android/app/build.gradle View File

@@ -39,7 +39,7 @@ android {
defaultConfig { defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "net.touchcapture.qr.flutterqrexample" applicationId "net.touchcapture.qr.flutterqrexample"
minSdkVersion 21
minSdkVersion 24
targetSdkVersion 27 targetSdkVersion 27
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName


Loading…
Cancel
Save