How to get these details:
I have tried to get this by following method
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
long joineDate = firebaseAuth.getCurrentUser().getMetadata().getCreationTimestamp();
String joined_on_date = String.valueOf(joineDate);
joined_on.setText(joined_on_date);
But that looks like this:
So how to display it in date format
No the question linked doesent answer my question when I get those date from firebase it shows some random numbers which I dont know in which form it is.