leus
01/15/2018, 6:26 PMgalex
01/15/2018, 6:33 PMr4zzz4k
01/15/2018, 6:39 PM./gradlew :app:dependencies > deps.txt
(or whatever module you have instead of app
)
and then check the file for the dependency with obsolete version; walk up the tree -- you should see which dependency pulls outdated kotlin runtime.r4zzz4k
01/15/2018, 6:43 PM+--- io.ktor:ktor-websockets:0.9.1-alpha-8
| +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0 (*)
| +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.0 -> 1.2.20-eap-71 (*)
| +--- org.jetbrains.kotlin:kotlin-stdlib-jre7:1.2.0 (*)
| +--- org.jetbrains.kotlin:kotlin-stdlib-jre8:1.2.0 (*)
| +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:0.20-alpha-12 (*)
So even though I've updated coroutines to 0.21.2, Ktor still pulls older 0.20-alpha-12 in, which is causing issues.leus
01/15/2018, 6:57 PMr4zzz4k
01/15/2018, 6:59 PMleus
01/15/2018, 7:00 PMleus
01/15/2018, 7:02 PMr4zzz4k
01/15/2018, 7:02 PMleus
01/15/2018, 7:02 PMleus
01/15/2018, 7:03 PMr4zzz4k
01/15/2018, 7:05 PM