Skip to content

Instantly share code, notes, and snippets.

@vprabhu
Created May 18, 2018 08:14
Show Gist options
  • Save vprabhu/1b6a15bae285f697586aab9bff8d26c5 to your computer and use it in GitHub Desktop.
Save vprabhu/1b6a15bae285f697586aab9bff8d26c5 to your computer and use it in GitHub Desktop.
object DateConverter {
@TypeConverter
fun toDate(timestamp: Long?): Date? {
return if (timestamp == null) null else Date(timestamp)
}
@TypeConverter
fun toTimestamp(date: Date?): Long? {
return date?.time
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment