when reruning builds (with gradle config cache one...
# gradle
u
when reruning builds (with gradle config cache one), I notice for every pure kotlin jvm project, this task
> Task :xyz:checkKotlinGradlePluginConfigurationErrors
is ran always (i.e. not UP-TO-DATE) What is it? It's a bug isn't it?
org.jetbrains.kotlin.gradle.plugin.diagnostics.CheckKotlinGradlePluginConfigurationErrors
kotlin 1.9.21, gradle 8.5
u
oh well, thanks!
d
I am getting an Android Studio Build Analyzer warning
Type: org.jetbrains.kotlin.gradle.plugin.diagnostics.CheckKotlinGradlePluginConfigurationErrors Duration: <0.1s
This task runs on every build because it declares no outputs, which it must do in order to support incremental builds.
pointing to https://developer.android.com/r/tools/build-attribution/no-task-outputs-declared how far can affect incremental builds, I guess that just the
CheckKotlinGradlePluginConfigurationErrors
, right?
d
perfect, thanks!