Last active
April 17, 2020 18:04
-
-
Save deepanshu42/424b1d0cb32982b916c9d811374668d7 to your computer and use it in GitHub Desktop.
Room Database example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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