Skip to content

A Quick Sample to demonstrate how to implement Room Database.

Notifications You must be signed in to change notification settings

imranhussain546/Room-database-Repo

Repository files navigation

Room-database

A simple CURD operation on Room-database and show the data in RecyclerView with cardview

Using Gradle

You can just add the dependency like below dependencies {

implementation 'androidx.room:room-runtime:2.2.5' annotationProcessor 'androidx.room:room-compiler:2.2.5' }

Requests for commons tasks

  • Insert data
  • Fetch data and show in listview
  • Update
  • Delete