Elio Maroun
12/13/2022, 11:54 AMimport kotlinx.datetime.toJavaLocalDate
import kotlinx.datetime.toJavaLocalTime
I am getting unresolved error when I remove these libraries from gradle although they are not related, I tried to invalidate cache and restart but still the same issue.
implementation("com.github.thellmund.Android-Week-View:core:5.2.4")
implementation("com.github.thellmund.Android-Week-View:jsr310:5.2.4")
implementation("com.github.thellmund.Android-Week-View:emoji:5.2.4")
implementation("com.himanshoe:kalendar-endlos:1.0.0")
Chrimaeon
12/13/2022, 1:07 PMkotlinx-datetime
yourself!?
https://github.com/Kotlin/kotlinx-datetimeElio Maroun
12/13/2022, 2:12 PMElio Maroun
12/13/2022, 2:13 PMChrimaeon
12/13/2022, 2:15 PMapi
instead of implemenation
in the dependencies section.Elio Maroun
12/13/2022, 2:19 PMElio Maroun
12/13/2022, 2:20 PMChrimaeon
12/13/2022, 2:22 PMimplementation
und the module are only visible in this module. To make dependencies “shareable” you need to declare as api
.
https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_recognizing_dependenciesElio Maroun
12/13/2022, 2:29 PM