kotlin-explorer icon indicating copy to clipboard operation
kotlin-explorer copied to clipboard

Desktop tool to quickly explore disassembled Kotlin code.

Results 9 kotlin-explorer issues
Sort by recently updated
recently updated
newest added

If we can publish the build artifact to [Homebrew Cask](https://github.com/Homebrew/homebrew-cask) or a custom brew repo like [Jake's](https://github.com/JakeWharton/homebrew-repo)? It would be easier to track the version updates.

Not very crucial but the white background really hurts me 👓 after few minutes playing with the tool. Having a darker mode would be very nice.

enhancement

When running the following code in _Kotlin-Explorer_ ``` public val Int.sign: Int get() = when { this < 0 -> -1 this > 0 -> 1 else -> 0 }...

Hi, when I click "Build & Disassemble" on Windows, I got this error: ``` exception: java.nio.file.InvalidPathException: Illegal char at index 71: C:\Users\moham\kotlin-compiler-2.0.0\kotlinc\lib\kotlin-stdlib-jdk8.jar:C:\Users\moham\kotlin-compiler-2.0.0\kotlinc\lib\kotlin-stdlib.jar:C:\Users\moham\kotlin-compiler-2.0.0\kotlinc\lib\kotlin-annotations-jvm.jar:C:\Users\moham\kotlin-compiler-2.0.0\kotlinc\lib\kotlinx-coroutines-core-jvm.jar:C:\Users\moham\kotlin-compiler-2.0.0\kotlinc\lib\annotations-13.0.jar:C:\Users\moham\AppData\Local\Android\Sdk\platforms\android-35\android.jar at java.base/sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:177) at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:153) at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77) at java.base/sun.nio.fs.WindowsPath.parse(WindowsPath.java:92)...

Refs #59, we can extend supporting Windows and Linux as well.

Tool is working on `run` command but not on `Build and Disassemble` ``` Error in /opt/homebrew/Cellar/kotlin/2.0.21/lib/kotlin-stdlib-jdk8.jar: java.nio.file.NoSuchFileException: /opt/homebrew/Cellar/kotlin/2.0.21/lib/kotlin-stdlib-jdk8.jar Error in /opt/homebrew/Cellar/kotlin/2.0.21/lib/kotlin-stdlib.jar: java.nio.file.NoSuchFileException: /opt/homebrew/Cellar/kotlin/2.0.21/lib/kotlin-stdlib.jar Error in /opt/homebrew/Cellar/kotlin/2.0.21/lib/kotlin-annotations-jvm.jar: java.nio.file.NoSuchFileException: /opt/homebrew/Cellar/kotlin/2.0.21/lib/kotlin-annotations-jvm.jar Error in...

Kotlin explorer is very impressive. Thank you! Would you consider adding support for displaying disassembled assembly from Kotlin/Native binaries alongside their LLVM bitcode intermediary representation?

Allow code to specify required dependencies. Dependencies are specified by adding comments like: ``` // dep: androidx.collection:collection-jvm:1.5.0 ``` In the source file.

For example, under Kotlin 2.1.20: ``` 3: @Composable 4: fun Foo() { 5: println() 6: println() 7: println() 8: } ``` Dex code line number table looks like this: ```...