Skip to content

Commit

Permalink
Fix atomicfu error using workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Jun 14, 2023
1 parent 4cc24ce commit 14b0710
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class AndroidKotlinPlugin : Plugin<Project> {
}
dependencies {
implementation(libs.findLibrary("kotlinxCoroutinesCore"))
// Fix https://youtrack.jetbrains.com/issue/KT-41821
implementation(libs.findLibrary("kotlinxAtomicfu"))
}
}
Expand Down
14 changes: 14 additions & 0 deletions core/designsystem/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import io.github.droidkaigi.confsched2023.primitive.implementation
import io.github.droidkaigi.confsched2023.primitive.libs

plugins {
id("droidkaigi.primitive.kmp")
id("droidkaigi.primitive.kmp.android")
Expand All @@ -9,5 +12,16 @@ plugins {

android.namespace = "io.github.droidkaigi.confsched2023.core.designsystem"

kotlin {
sourceSets {
commonMain {
dependencies {
// Fix https://youtrack.jetbrains.com/issue/KT-41821
implementation(libs.findLibrary("kotlinxAtomicfu").get())
}
}
}
}

dependencies {
}

0 comments on commit 14b0710

Please sign in to comment.