Jakub Gwóźdź
06/13/2025, 2:09 PM> Cannot find a version of 'org.jetbrains.kotlinx:kotlinx-coroutines-core' that satisfies the version constraints:
Dependency path 'i9ns-jakubg-playground:web:unspecified' --> 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2'
Dependency path 'i9ns-jakubg-playground:web:unspecified' --> 'io.nacular.doodle:controls:0.11.1' (jsRuntimeElements-published) --> 'io.nacular.doodle:controls-js:0.11.1' (jsRuntimeElements-published) --> 'org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.8.0}'
my setup is basically like in AnimatingForm example:
sourceSets {
// Source set for all platforms
commonMain.dependencies {
api(libs.coroutines.core)
implementation(libs.doodle.controls )
implementation(libs.doodle.animation)
implementation(libs.doodle.themes )
}
Nick
06/14/2025, 4:00 PMJakub Gwóźdź
06/15/2025, 7:00 AMJakub Gwóźdź
06/15/2025, 7:18 AMconfigurations.all {
resolutionStrategy {
force(libs.coroutines.core.get())
}
}
at the end of my project's gradle fileNick
06/15/2025, 3:53 PMJakub Gwóźdź
06/15/2025, 4:10 PM