Created
October 22, 2017 11:46
-
-
Save AkshayChordiya/4c7f1554140468269bdce54e0c3689bc to your computer and use it in GitHub Desktop.
App Database - Room
This file contains 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 AppDatabase : RoomDatabase() { | |
abstract fun userDao(): UserDao | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment