0

I want to find out how long the device has been used. I dont want the uptime i want the actual time elapsed from the device first boot

Sudhasri
  • 1,264
  • 16
  • 19

1 Answers1

0

you can try:

Log.i("ManuFacturer :", Build.MANUFACTURER);
Log.i("Board : ", Build.BOARD);
Log.i("Diaply : ", Build.DISPLAY);
Log.i("Time : ", Build.TIME);

Unfortunately the Build.TIME will be reset when new ROM is installed.

reference: Retrieve Android Device Manufactured date Programatically?

Community
  • 1
  • 1
Aman Grover
  • 1,621
  • 1
  • 21
  • 41