readium / kotlin-toolkit

A toolkit for ebooks, audiobooks and comics written in Kotlin
https://readium.org/kotlin-toolkit
BSD 3-Clause "New" or "Revised" License
163 stars 72 forks source link

Replace `Date` with `Instant` #506

Closed mickael-menu closed 2 months ago

mickael-menu commented 2 months ago

Removing JVM dependencies

To reduce our depency to the JVM, we no longer use Date objects in the toolkit. Instead, we added a custom Instant type.

You can still translate from and to a Date object with Instant.fromJavaDate() and instant.toJavaDate().