Dariusz Kuc
02/27/2020, 6:05 AMCaused by: java.lang.NoSuchMethodError: kotlinx.coroutines.CoroutineScopeKt.cancel(Lkotlinx/coroutines/CoroutineScope;Ljava/lang/String;Ljava/lang/Throwable;)V
which points to old version of coroutines lib being used. Sure enough by running gradle dependencies
I see
kotlinCompilerPluginClasspath
\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.3.61
...
| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1
any ideaes on how to fix this?octylFractal
02/27/2020, 6:29 AMDariusz Kuc
02/27/2020, 7:32 AMplugins {
id("myPlugin")
}
dependencies {
implementation("myLib")
}
Dariusz Kuc
02/27/2020, 7:33 AMmyLib
and myPlugin
use proper coroutines versionoctylFractal
02/27/2020, 7:33 AMoctylFractal
02/27/2020, 7:34 AMDariusz Kuc
02/27/2020, 7:34 AMkotlinCompilerPluginClasspath
Dariusz Kuc
02/27/2020, 7:34 AMoctylFractal
02/27/2020, 7:35 AMoctylFractal
02/27/2020, 7:35 AMoctylFractal
02/27/2020, 7:35 AMDariusz Kuc
02/27/2020, 7:35 AMDariusz Kuc
02/27/2020, 7:37 AMDariusz Kuc
02/27/2020, 7:38 AMruntimeClasspath
and compile/default dependencies for projects are correctoctylFractal
02/27/2020, 7:39 AMDariusz Kuc
02/27/2020, 7:43 AMDariusz Kuc
02/27/2020, 7:45 AMDariusz Kuc
02/27/2020, 7:45 AM