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
Above answers can be useful, but what helped me is reducing the kotlin_version
in build.gradle(Project)
to 1.3.41
and building the project. This will allow you to see if there is any issue with your entity model.
Mine was, I forgot to annotate @PrimaryKey
. Your may be something different. Kotlin 1.3.41
allows to to see those issues. Fix those issues and revert back your kotlin_version
to the previous one.