Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Created October 22, 2017 11:46
Show Gist options
  • Save AkshayChordiya/4c7f1554140468269bdce54e0c3689bc to your computer and use it in GitHub Desktop.
Save AkshayChordiya/4c7f1554140468269bdce54e0c3689bc to your computer and use it in GitHub Desktop.
App Database - Room
@Database(entities = arrayOf(User::class), version = 1)
abstract class AppDatabase : RoomDatabase() {
abstract fun userDao(): UserDao
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment