I have just started using android development and trying to use Room library. Since yesterday I am facing this warning message
w: [kapt] Incremental a
If it's complaining that "Incremental annotation processing requested, but support is disabled because the following processors are not incremental", then setting "kapt.incremental.apt" to "true" (mentioned in a different answer) in gradle.properties is counter-intuitive. You need to set it to "false". That did it for me.