What's the modern kotlin/java/android date/time package I should be using?
m
mkrussel
07/18/2023, 6:41 PM
The Java 8 date library is useable from Android now with the correct desugaring options.
There's also the Kotlinx date time library, which is implemented on top of the Java 8 one for JVM and Android platforms.
z
zt
07/18/2023, 9:35 PM
ive also been having this similar situation but all the current existing libraries either fall short in functionality or are limited by API levels
c
Colton Idle
07/18/2023, 10:05 PM
So java 8 date libraries or the kotlinx datetime lib are my top 2 choices it seems?