https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
m

Mananpoddarm

06/10/2020, 8:16 AM
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

Kris Wong

06/10/2020, 1:14 PM
write unit tests
a

Andrew

06/10/2020, 3:24 PM
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

Mananpoddarm

06/10/2020, 3:36 PM
okay, thanks:)