I retrieved the date from firestore saved in the timestamp format like this:
Date retrievedDate = class.getDate();
the date saved in firestore format: //it is in timestamp format
How to convert this date to a normal presentable format like : 7 June 2020, Sunday, 15:09 PM?
Thank you in advance.