alaershov
10/24/2023, 7:36 AMParcelable
code, generated by kotlin-parcelize
plugin, directly in Android Studio?
I can't see it with "Show Kotlin Bytecode", and I don't want to build the whole APK and decompile it.Eugen Martynov
10/24/2023, 7:54 AMbuild\generaed\source
or somewhere aroundalaershov
10/24/2023, 7:56 AM/build/tmp/kotlin-classes/
in the same gradle module where your class is contained
• then you find your compiled class
• then in the Studio menu press Tools/Kotlin/Decompile to Java
Works like a charm!Eugen Martynov
10/24/2023, 7:58 AMalaershov
10/24/2023, 7:59 AMEugen Martynov
10/24/2023, 8:02 AMChrimaeon
10/24/2023, 11:29 AMalaershov
10/24/2023, 11:44 AM