Trying to convert a LocalDate to Date using the following but getting this error:
Call requires API level 26 (current min is 21): java.util.Date#from
val finalDate = Date.from(finalLocalDate.atStartOfDay(ZoneId.systemDefault()).toInstant())
I cannot change the min SDK.
Just wondering that is the best way to do this?