Reputation: 613
[kapt] Incremental annotation processing requested, but support is disabled because the following processors are not incremental: dagger.internal.codegen.ComponentProcessor (DYNAMIC), android.databinding.annotationprocessor.ProcessDataBinding (DYNAMIC).
Upvotes: 1
Views: 1838
Reputation: 819
To have incremental annotation processing using dagger
and kapt
, please try this configuration:
arguments << ["dagger.gradle.incremental": "true"]
)gradle.properties
:
kapt.incremental.apt=true
,kapt.use.worker.api=true
,kapt.include.compile.classpath=false
Upvotes: 6