Assigned
Status Update
Comments
ra...@google.com <ra...@google.com>
je...@google.com <je...@google.com>
hu...@google.com <hu...@google.com> #2
Any updates on this? It's been a month already since I reported it, and it seems this crash is occurring quite frequently for my users.
ho...@gmail.com <ho...@gmail.com> #3
Comment has been deleted.
mi...@gmail.com <mi...@gmail.com> #4
Seems like a fairly easy fix on our end. I'll see to that it is fixed in 1.5.
hu...@google.com <hu...@google.com> #5
This sounds like an incremental Kotlin compilation issue.
Can you please file a bug at
Also, can you see if running ./gradlew <affected-modules>:clean
can help work around the issue? (<affected-modules>
include the modules where the extension function are defined and the modules where they are used/referenced.)
Description
fun Date.isFullMonth(endDate: Date): Boolean { val startCalendar = Calendar.getInstance().withTime(this) val endCalendar = Calendar.getInstance().withTime(endDate) return startCalendar.isFullMonth(endCalendar) }