we have over 100 gradle modules and it's really ta...
# android
e
we have over 100 gradle modules and it's really taking a toll on our build times, it affects incrementals too
😕 3
j
@emma https://docs.gradle.org/nightly/userguide/java_plugin.html#sec:incremental_annotation_processing
All annotation processors need to opt in to this feature, otherwise they will trigger a full recompilation.
Are you certain all your annotation processors have opted in?
g
Kapt doesnt support incremental annotation processors anyway, so it not related
What do you mean "affects incrementals"?
This is how AP work, there is no incremental AP out of the box
j
Oh, thanks for the correction.
e
what i mean is, it's a problem when we do incremental compilations. So for 100 modules, if we lose half a second that's adding 50 seconds to each build 😕