May 2022
Intermediate to advanced
688 pages
20h 12m
English
If you look through the logs in the build window, you will find a warning about your app not providing a schema export directory:
warning: Schema export directory is not provided to the annotation processor
so we cannot export the schema. You can either provide `room.schemaLocation`
annotation processor argument OR set exportSchema to false.
(If the build window does not open automatically when you run the app, you can open it with the Build tab at the bottom of the Android Studio window.)
A database schema represents the structure of the database, including what tables are in the database, what columns are in those tables, and any constraints on and relationships between those tables. Room ...
Read now
Unlock full access