I am trying to perform the digital forensics experiment in my Android phone. I would like to know how to get the common chatting app lifecycle log, like Discord, Facebook Messenger or WhatsApp. I want to find the exact time each of the lifecycle methods is called for each app, such as onCreate()
, onStart()
, onStop()
, etc.
I tried looking up in data/system/usagestats folder, but I was only able to find the records for onPause()
and onResume()
in the usagestats folder.
I cannot find the other activities, like onStart()
, onCreate()
, onStop()
and onDestory()
.
I also checked the logcat, but the log seems did not record these information regarding lifecycle methods.
Does anyone know where I can find a detailed records regarding the time each lifecycle methods is called?