How do I solve this? I tried - deleting .gradle, a...
# javascript
a
How do I solve this? I tried • deleting .gradle, and all build dirs without success. • Compiling with different kotlin versions (1.4.32,1.5.0,1.5.10,1.5.21) But failed. Any help is appreciated
t
0.
./gradlew --stop
1. Go to global gradle dir
%USER_DIR%/.gradle
and remove following directories: •
caches
configuration-cache
2. Check compilation
Looks very similar although my error is specific to 1.5.21
a
@turansky I tried that and it ddnt work 😞
@Robert Jaros any workaround you know so far? I think we are suffering the same problem
somehow, I have narrowed this down to only 1.5.20 and 1.5.21
r
I've just changed my code from
console.log(...)
to
Copy code
val x = ...
console.log(x)
it was enough to workaround the bug for me. I don't know if it's works for you.
t
What about
1.5.30-M1
? Is it affected too?
r
Yes. It seems affected as well.
😞 2
a
Can confirm as well. 1.5.30-M1 is also affected