From 641e00b3413d97f285f49b39d61b3a4edd5b3f7e Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Tue, 5 Aug 2025 11:23:14 +0200 Subject: [PATCH] Fix installation guide for Kotlin SDK --- snippets/kotlin-multiplatform/installation.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/kotlin-multiplatform/installation.mdx b/snippets/kotlin-multiplatform/installation.mdx index 2d12e26f..6796d17f 100644 --- a/snippets/kotlin-multiplatform/installation.mdx +++ b/snippets/kotlin-multiplatform/installation.mdx @@ -5,9 +5,9 @@ kotlin { //... sourceSets { commonMain.dependencies { - api("com.powersync:core:$powersyncVersion") + implementation("com.powersync:core:$powersyncVersion") // If you want to use the Supabase Connector, also add the following: - implementation("com.powersync:connectors:$powersyncVersion") + implementation("com.powersync:connector-supabase:$powersyncVersion") } //... }