Changes
Migrate to the Room Gradle plugin introduced in Room 2.6.0.
The plugin configures the project such that generated schemas (which are
an output of the compile tasks and are consumed for auto-migrations) are
correctly configured to have reproducible and cacheable builds.
Running Gradle tasks such as assembleDebug twice in a row now leads to tasks in the second run being up to date, allowing incremental compilation to work correctly.
Changes Migrate to the Room Gradle plugin introduced in Room 2.6.0.
https://developer.android.com/jetpack/androidx/releases/room#gradle-plugin
Running Gradle tasks such as
assembleDebug
twice in a row now leads to tasks in the second run being up to date, allowing incremental compilation to work correctly.Issues