Hey! Do we have possibility to check raw code gene...
# compose
i
Hey! Do we have possibility to check raw code generated by @Composable? I tried check Kotlin class byteCode but unfortunatelly I don't see there Composable additions.
r
It won't work because of how that feature work (it doesn't run compiler plugins)
However you can inspect the .class files generated in the build directory. You can use javap -c or any other decompiler to do so
i
thanks! finally I was able to look real code :D