Saving Data With Rooms
- the main idea of this that we can persist the data locally.
what is Room ?
- it’s an ORM (Object Relational Mapping library) for SQLite database in google, Abstract layer that wraps the database adopted in Android it’s a part ot the components that google has released.
what the benifit of Room ?
- it’s mainly done to presist data faster.
- Compile-time verification of SQL queries.
- Convenience annotations that minimize repetitive and error-prone boilerplate code.
- Streamlined database migration paths.

Primary components and Android Architecture components
- Room Component
- Setting up environment
- Entity (Database table).
