You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am just setting maximum date and minimum date by this using this code binding.materialCalendar.state().edit() .setMinimumDate(minDate) .setMaximumDate(maxDate) .commit();
but While building it throws error like .setMinimumDate(minDate) ^ class file for org.threeten.bp.LocalDate not found
But I am actually using setMinimumDate(CalendarDay day) method only.
The text was updated successfully, but these errors were encountered:
Same error here.
I'm not using LocalDate parameters, I'm using CalendarDay parameters, like (2015, 1, 1) when trying to set minimum.
I had to make a downgrade to version 1.4.3 to put setMinimumDate and setMaximumDate methods to work.
I am just setting maximum date and minimum date by this using this code
binding.materialCalendar.state().edit() .setMinimumDate(minDate) .setMaximumDate(maxDate) .commit();
but While building it throws error like
.setMinimumDate(minDate) ^ class file for org.threeten.bp.LocalDate not found
But I am actually using setMinimumDate(CalendarDay day) method only.
The text was updated successfully, but these errors were encountered: