i have a date in String "2020-06-02"
now i have to convert it in LocalDate but without using DateTimeFormatter.
is it possible.
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
LocalDate inputAdDate = LocalDate.parse(adDate, formatter);
as of now my code looks like this. but i dont want to use DateTimeFormatter as it is not supported in API level below 26.