From 8b77e1a0e574c32dcc3e2478b78f729af1ee7e1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 9 May 2019 00:34:00 +0800 Subject: [PATCH 1/7] Update qr_code_scanner.podspec --- ios/qr_code_scanner.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/ios/qr_code_scanner.podspec b/ios/qr_code_scanner.podspec index b71df1b..f7dcd4c 100644 --- a/ios/qr_code_scanner.podspec +++ b/ios/qr_code_scanner.podspec @@ -18,5 +18,6 @@ A new Flutter project. s.dependency 'Flutter' s.dependency 'MTBBarcodeScanner' s.ios.deployment_target = '8.0' + s.swift_version = '5.0' end From f490b6fb57ea7bacdf772fc6f7b4ef8864320221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 9 May 2019 00:43:27 +0800 Subject: [PATCH 2/7] Update pubspec.yaml --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 90a7347..6e7b112 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: qr_code_scanner description: QR code scanner that can be embedded inside flutter. It uses zxing in Android and MTBBarcode scanner in iOS. -version: 0.0.5 +version: 0.0.6 author: Julius Canute homepage: https://github.com/juliuscanute/qr_code_scanner From 4829527277ffc070883e73c4ec48451bded5da1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 9 May 2019 04:15:05 +0800 Subject: [PATCH 3/7] fix for android build --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index dd63f1b..7a4b11f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,7 +34,7 @@ android { } defaultConfig { minSdkVersion 16 - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } lintOptions { disable 'InvalidPackage' From 357d5538e9e052a54653ea6781d6b8c1ac04747f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 9 May 2019 04:15:32 +0800 Subject: [PATCH 4/7] Update pubspec.yaml --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 6e7b112..f72b1d8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: qr_code_scanner description: QR code scanner that can be embedded inside flutter. It uses zxing in Android and MTBBarcode scanner in iOS. -version: 0.0.6 +version: 0.0.7 author: Julius Canute homepage: https://github.com/juliuscanute/qr_code_scanner From a31e1bacfeaf487fc2cce3c4d2befbdeeba7e39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 16 May 2019 19:40:59 +0800 Subject: [PATCH 5/7] Update build.gradle --- android/build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 7a4b11f..3a538ae 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -28,17 +28,22 @@ apply plugin: 'kotlin-kapt' android { compileSdkVersion 27 + buildToolsVersion '27.0.3'+ + sourceSets { main.java.srcDirs += 'src/main/kotlin' } defaultConfig { - minSdkVersion 16 + minSdkVersion 21 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } lintOptions { disable 'InvalidPackage' } + + aaptOptions.cruncherEnabled = false + aaptOptions.useNewCruncher = false } dependencies { From 6d778ac74ec08efa529dd5f89787b8d3a52036e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 16 May 2019 20:29:47 +0800 Subject: [PATCH 6/7] Update build.gradle --- android/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 3a538ae..fdddc5e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -28,7 +28,6 @@ apply plugin: 'kotlin-kapt' android { compileSdkVersion 27 - buildToolsVersion '27.0.3'+ sourceSets { From 89c81d8d0094c1ccb89d87eb7e2a17ae7eedc6a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20C=C3=A9sar?= Date: Thu, 16 May 2019 20:41:18 +0800 Subject: [PATCH 7/7] Update build.gradle --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index fdddc5e..62a9496 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -27,7 +27,7 @@ apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' android { - compileSdkVersion 27 + compileSdkVersion 28 sourceSets {