My builds seem to be failing when trying to use ko...
# compose-desktop
c
My builds seem to be failing when trying to use kotlin 1.5.31 because one of my dependencies is from jetpack compose and so it's not updated to 1.5.31 yet.
+--- androidx.compose.runtime:runtime-livedata:{strictly 1.1.0-alpha04} -> 1.1.0-alpha04 (c)
Does anyone know if there's a jetbrains version of that library that I just can't seem to locate so that I can build with the latest kotlin?
j
I don't think there is a 1.5.31 build yet (although that version is merged into Compose upstream, so an upcoming release should have it very soon). In the mean time, 1.5.31 is very similar to 1.5.30, so using using the Jetbrains build
v1.0.0-alpha4-build348
and suppressing the error message about a kotlin version mismatch should work for you. Alternatively, using
v1.0.0-alpha4-build348
and forcing your kotlin version (via gradle) to 1.5.30 should also work for your other dependency because, like I said, those two versions of Kotlin are almost identical.
c
Thanks. Surpressing the message isn't working. But I'm testing 1.5.31 because I'm testing to see if a big was fixed.