Login and register in android with Room | and Source Code
Link To Download Source Code
https://github.com/UsamaElgendy/Login...
explain how we can using room architecture component with practice
Simple login and registration in an application. This app displays the login
screen and registration screen and also displays home screen
before begining to use room you must know three main components,
Components of Room:
First , Database: It is the main class that’s annotated with @Database .
Be an abstract class that extends Room Database.
Second , Entity: Represents a table within the database
-Third , DAO: Data access object. A mapping of SQL queries to functions.