Skip to content

Instantly share code, notes, and snippets.

@gabriel-TheCode
Created June 23, 2021 11:10
Show Gist options
  • Select an option

  • Save gabriel-TheCode/8d1df0a395f2da4b627635a1817f4d63 to your computer and use it in GitHub Desktop.

Select an option

Save gabriel-TheCode/8d1df0a395f2da4b627635a1817f4d63 to your computer and use it in GitHub Desktop.
Blog Database
@Database(entities = [BlogCacheEntity::class], version = 1)
abstract class BlogDatabase : RoomDatabase() {
abstract fun blogDao(): BlogDao
companion object {
const val DATABASE_NAME: String = "blog_db"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment