diff --git a/demo/shared/build.gradle.kts b/demo/shared/build.gradle.kts index 7f88424..72912c5 100644 --- a/demo/shared/build.gradle.kts +++ b/demo/shared/build.gradle.kts @@ -31,8 +31,8 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation(libs.compose.coachmark) -// implementation(project(":coachmark")) +// implementation(libs.compose.coachmark) + implementation(project(":coachmark")) implementation(compose.runtime) implementation(compose.foundation) implementation(compose.material3) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 770a0e7..8585a4a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -8,7 +8,7 @@ compileSdk = "34" targetSdk = "34" [libraries] -compose-coachmark = "io.github.pseudoankit:coachmark:1.8.0" +compose-coachmark = "io.github.pseudoankit:coachmark:2.0.3" compose-lint = "com.slack.lint.compose:compose-lint-checks:1.3.1" gradle-publish = "io.github.gradle-nexus.publish-plugin:io.github.gradle-nexus.publish-plugin.gradle.plugin:2.0.0-rc-1" @@ -18,4 +18,4 @@ android-app = { id = "com.android.application", version.ref = "agp" } android-library = { id = "com.android.library", version.ref = "agp" } kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } -compose-multiplatform = { id = "org.jetbrains.compose", version = "1.6.0-rc02" } +compose-multiplatform = { id = "org.jetbrains.compose", version = "1.6.0" } diff --git a/settings.gradle.kts b/settings.gradle.kts index 1b29f1f..651c2b0 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -17,10 +17,6 @@ dependencyResolutionManagement { } } -//plugins { -// id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0" -//} - rootProject.name = "coachmark" include(":demo:android")