Created by: KrugarValdes
Merge commits with version updates & minor fixes:
- Java and Kotlin Version Mismatch: The Java and Kotlin compilers were targeting different Java Virtual Machine (JVM) versions—Java aimed for 1.8, while Kotlin aimed for 17. I resolved this by setting the JVM-target to version 17 for both Kotlin and Java.
- Outdated localize() Function: After updating the epic-calendar dependency, the localize() function I was using became deprecated or removed in the new version of the dependency. I replaced it with dayOfWeek.localizedBySystem(). -Hilt Version Update: I updated the hilt-var dependency from "2.48" to "2.51.1".