zt
05/05/2024, 6:40 AMe: Wrong plugin option format: null, should be plugin:<pluginId>:<optionName>=<value>
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':common:compileKotlinJvm'.
> A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction
> Compilation error. See log for more details
Tim McCormack
05/05/2024, 12:26 PMzt
05/05/2024, 7:03 PMcomposeCompiler {
reportsDestination = project.file("${project.layout.buildDirectory}/compose")
}
Fixed by:
composeCompiler {
reportsDestination = project.layout.buildDirectory.dir("compose")
}
Weird how vague the error was though, surely that should be improved. Wonder if this is gradle kotlins fault for the poor error or compose compiler pluginTim McCormack
05/05/2024, 8:25 PM