From af941df553b19d60aaa3d42a3657b4ffc31b545f Mon Sep 17 00:00:00 2001 From: ibartj Date: Thu, 18 Mar 2021 12:08:46 +0100 Subject: [PATCH] fix mistake in README for Older SDK versions The error in README for Android SDK versions < 24 was introduced in this commit: https://github.com/journeyapps/zxing-android-embedded/commit/545672bb8f0cbb15df202b353c1d8d548b0ccfc5 As said some 20 lines above: "From version 4.x, only Android SDK 24+ is supported by default" The last version working with SDK < 24 is 3.6.0. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd2f25b5..cc64ef8c 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ repositories { } dependencies { - implementation('com.journeyapps:zxing-android-embedded:4.2.0') { transitive = false } + implementation('com.journeyapps:zxing-android-embedded:3.6.0') { transitive = false } implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'com.google.zxing:core:3.3.0' }