I used to have a `jvm` target for which the genera...
# multiplatform
j
I used to have a
jvm
target for which the generated library was in kotlin and readable from my android app. Since a changed the target to
android
both the debug and release libraries are in Java and not readable from android studio (it gives me the option to “Decompile to Java” which gives unclear/non-readable code, “Download sources” which does nothing and “Choose sources” for which I don’t know what to select. Isn’t there a simple config for the debug variant at least to make it readable just as the file from the shared library?
Turned out even if android studio does not show me the kotlin class as I want when I do “command + click”, I can still go to External Libraries > MyLibrary > classes.jar > MyClass and put breakpoint there