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
Asked
Active
Viewed 255 times
0
-
Possible duplicate of http://stackoverflow.com/questions/9242307/android-device-age – Sasikumar Sep 07 '16 at 08:43
1 Answers
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