when evaluating the performance using the metrics ...
# compose
j
when evaluating the performance using the metrics report, what’s the difference between using
compileReleaseKotlin
and
assembleRelease
?
Copy code
./gradlew -PenableComposeCompilerMetrics=true -PenableComposeCompilerReports=true --rerun-tasks compileReleaseKotlin
vs
Copy code
./gradlew -PenableComposeCompilerMetrics=true -PenableComposeCompilerReports=true --rerun-tasks assembleRelease
they seem to produce identical reports, is
compileReleaseKotlin
just part of
assembleRelease
?
👌 1