I'm using K2 with 2024.1.4 and a multi-project Gradle build. None of the instructions on how to make a compose compiler report (that shows restartable/stable/etc) seem to work for me. Is there a Correct™️ set of instructions somewhere?
e
efemoney
08/06/2024, 7:06 AM
What instructions are you following?
The general process is
• apply kotlin compose gradle plugin to the module
• configure the
composeCompiler
extension with the directory for reports & metrics
• run a kotlin compilation (which will generate said metrics / reports) (eg
compileKotlin
)
• profit
This should work … & is simple 🤔
b
Ben Trengrove [G]
08/06/2024, 8:59 AM
Something like this will output the report in the modules build dir