Is there a time line for when "code with me"will b...
# intellij
r
Is there a time line for when "code with me"will be integrated with Android studio
a
I believe some early version should be available in AS 2021.1. I can't share any dates though.
r
@Alexey Belkov [JB] , your just the guy i want to talk to lol . there is a pretty rough autoboxing issue with inline classes in kotlin 1.5.2 and down ... But I see you mention that the fix is out for kotlin 1.5.30-m1 , is that correct ? https://youtrack.jetbrains.com/issue/KT-46477#focus=Comments-27-4952485.0-0
a
I'm not sure about that particular comment, because it doesn't have a self-contained code example. The original issue https://youtrack.jetbrains.com/issue/KT-46477 is indeed fixed in 1.5.30-M1.
r
Is there any work around prior
?
a
Use Kotlin 1.4.32 or disable new JVM IR backend: https://kotlinlang.org/docs/whatsnew15.html#stable-jvm-ir-backend
r
Disabling the new ir compiler seemed to resolve in the same issue
I mean did not solve the issue
I thought it would
Do you have to do something separate to disable for test
a
For Gradle (Groovy) DSL, here is how you can disable the new backend for a particular test sourceset: compileTestKotlin { kotlinOptions.freeCompilerArgs += ["-Xuse-old-backend"] }