The date is "Mon Sep 24 15:27:21 GMT+03:00 2018". And tried to get this pattern like
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
Date startDate = simpleDateFormat.parse(startDateString);
And I get Unparseable Date Exception.What is the date pattern of this date in Android-JAVA?