From 67270e09bfad1dbf5e262b1d2776d067262fa672 Mon Sep 17 00:00:00 2001 From: Amir Angel <36531255+17Amir17@users.noreply.github.com> Date: Sun, 17 Sep 2023 18:21:17 +0300 Subject: [PATCH] Update Kotlin Version In Docs (#2536) #2535 After version `12.10.7` build will fail with ``` INF/java.com.google.android.libraries.play.billing.public.ktbilling_granule.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.8.0, expected version is 1.6.0. ``` Downgrading to `12.10.5` works with 1.6.0 --- docs/docs/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/get-started.md b/docs/docs/get-started.md index 6796784c3..56f1c1251 100644 --- a/docs/docs/get-started.md +++ b/docs/docs/get-started.md @@ -57,7 +57,7 @@ buildscript { + androidXAnnotation = "1.1.0" + androidXBrowser = "1.0.0" + minSdkVersion = 24 -+ kotlinVersion = "1.6.0" ++ kotlinVersion = "1.8.0" } }