This app is used to store notes at one place and customize them using different features.
Room - The Room persistence library provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
Latest Update : July 27, 2022
Stable Release : 2.4.3
Release Candidate : -
Beta Release : -
Alpha Release : 2.5.0-alpha02
How to declare dependencies ? - Answer
Why use Room?
- Compile-time verification of SQL queries. each @Query and @Entity is checked at the compile time, that preserves your app from crash issues at runtime and not only it checks the only syntax, but also missing tables.
- Boilerplate code
- Easily integrated with other Architecture components (like LiveData)
Components of Room Db
To read more about room db - Click here