From 7c7fa2c21e9c6b7a1720ecaa6292e7542370ac41 Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Tue, 9 Jul 2024 12:39:13 +0200 Subject: [PATCH] Update README.md (#952) Updated to the latest version because otherwise the example in the readme does not build because SkiaLayerRenderDelegate is missing --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b28dceab8..bdff089d4 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ i.e. something like this } val osArch = System.getProperty("os.arch") - var targetArch = when (osArch) { + val targetArch = when (osArch) { "x86_64", "amd64" -> "x64" "aarch64" -> "arm64" else -> error("Unsupported arch: $osArch") } - val version = "0.7.9" // or any more recent version + val version = "0.8.9" // or any more recent version val target = "${targetOs}-${targetArch}" dependencies { implementation("org.jetbrains.skiko:skiko-awt-runtime-$target:$version")