Does Android provide a simple way to find out programmatically in my Java app when the last datetime the system was turned off was? I'm not looking for when it was last turned on, but last turned off.
I've found lots of information for when it was last turned on. But nothing useful to me for when it was last turned off.
NOTE: Setting up a broadcast listener for system shutdowns is not going to work for my particular use-case. This is because when my app starts up I need to know when the device was last shut down, even if my app (at the time) had been forced-off by the user. It won't receive broadcasts if it has been forced off.
EDIT: I tried getting logcat records, since a comment in another thread indicated that even without rooting the device or running a system app, some (not many) system logs would be available in addition to app logs. However, the logs that I was able to see based on this code only start when the device itself starts. So that was no help.