From aee205e9127853752c06e5d62a87590cbbf3aabf Mon Sep 17 00:00:00 2001 From: Travis Wyatt Date: Wed, 19 Jun 2024 11:07:10 -0700 Subject: [PATCH] Update Gradle documentation w/ new Maven coordinate (#694) --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4df6873b6..b98f74e2e 100644 --- a/README.md +++ b/README.md @@ -608,17 +608,13 @@ kotlin { iosArm64() sourceSets { - val commonMain by getting { - dependencies { - api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutinesVersion}") - implementation("com.juul.kable:core:${kableVersion}") - } + commonMain.dependencies { + api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutinesVersion}") + implementation("com.juul.kable:kable-core:${kableVersion}") } - val androidMain by getting { - dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutinesVersion}") - } + androidMain.dependencies { + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutinesVersion}") } } }