Hi everyone. I am using kotlin multiplatform to ge...
# multiplatform
m
Hi everyone. I am using kotlin multiplatform to generate android libraries. what is the best way to debug it though. Currently, I have to build the .jar file, put it in the android app and run the android app to see the log statements. Is there any better way to do it?
k
write unit tests
a
I added the module source directory to the android studio project rather than just referencing a jar file, that way you can modify the code as well as debug
☝️ 2
m
okay, thanks:)