romainguy / kotlin-explorer

Desktop tool to quickly explore disassembled Kotlin code.
Apache License 2.0
732 stars 20 forks source link

Fix classpath generation with android.jar for kotlinc #53

Closed EpicDima closed 2 months ago

EpicDima commented 2 months ago

Path is also Iterable, so we got a list that consisted of separate directories leading to android.jar that were separated by a colon, as a result of which the Kotlin compilation did not work

romainguy commented 2 months ago

Thanks! A great example of why operator overloading is dangerous :)