rudolf.hladik
11/03/2021, 1:22 PM1.5.1-native-mt
and forces it by strictly
config. I use this library as api
gradle dependency in shared/commonMain
module. The problem is that I also use some dependencies in Android app that also use coroutines but not the 1.5.1-native-mt
branch.mbonnin
11/03/2021, 2:24 PM./gradlew :app:dependencies
?mbonnin
11/03/2021, 2:25 PM1.5.1-native-mt
you should be good to go. It's kinda of superset of 1.5.1
rudolf.hladik
11/03/2021, 2:42 PMExecution failed for task ':app:checkDevDebugAarMetadata'.
> Could not resolve all files for configuration ':app:devDebugRuntimeClasspath'.
> Could not resolve org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0.
Required by:
project :app > androidx.compose.ui:ui:1.0.3
project :app > androidx.compose.animation:animation:1.0.3 > androidx.compose.animation:animation-core:1.0.3
mbonnin
11/03/2021, 2:45 PMmbonnin
11/03/2021, 2:45 PMallprojects {
configurations {
all {
resolutionStrategy {
force("org.jetbrains.kotlinx:kotlinx-coroutines-core:x.y.z-native-mt")
}
}
}
}
rudolf.hladik
11/03/2021, 7:53 PM