Skip to content

Instantly share code, notes, and snippets.

@deepanshu42
Last active April 17, 2020 18:04
Show Gist options
  • Select an option

  • Save deepanshu42/424b1d0cb32982b916c9d811374668d7 to your computer and use it in GitHub Desktop.

Select an option

Save deepanshu42/424b1d0cb32982b916c9d811374668d7 to your computer and use it in GitHub Desktop.
Room Database example
@Database(entities = arrayOf(User::class), version = 1)
abstract class UserDatabase : RoomDatabase() {
abstract fun userDao(): UserDao
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment