Created
May 23, 2020 06:47
-
-
Save deepanshu42/0b2de9b16ddc87cd2aaf526c30dcf1bd to your computer and use it in GitHub Desktop.
Type Converter 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) | |
@TypeConverters(Converters::class) | |
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