In my app, I noticed that the day from the datetime is wrong
By using:
DateFormat dateFormat = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss");
final Calendar cal = Calendar.getInstance();
date = dateFormat.format(cal.getTime());
It gives me 2021-02-49 09:41:29
, as you can see. the day from the datetime is 49
. Why is it like that?