waseefakhtar / dose-android

💊⏰ Dose is a medication reminder app for Android, built entirely using Kotlin and Jetpack Compose with MVVM + Clean Architecture
https://play.google.com/store/apps/details?id=com.waseefakhtar.doseapp
MIT License
509 stars 80 forks source link

Removed all Date and Calendar instances replaces with LocalDate and LocalTime #146

Closed tuuhin closed 6 months ago

tuuhin commented 8 months ago

This pull request contains the following changes addressing #144 , If you have any questions please let me know.

Migration from LocalDate to LocalTime and less use of Calendar instance Removed all the Date Instances with LocalDate / LocalTime As with Dates it need to used with Calendar Api in most of the cases , LocalDate and others have direct methods for adding hours/ days ... etc. Thus removed most of Calendar Instances.