'Why Kotlin 1.6.x uses kotlinx-coroutines 1.5.2 by default
I use Kotlin 1.6.20 in my Gradle project and It uses dependency kotlinx-coroutines 1.5.2 by default.
build.gradle.kts
plugins {
...
kotlin("jvm") version "1.6.20"
}
dependencies {
...
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm")
}
But latest version is 1.6.1.
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.1")
Stability reason?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
