4

Is there any possibility to know the below:

  • When was the android device first started-date or time
  • Device's first boot time
Abubakr Dar
  • 4,078
  • 4
  • 22
  • 28
WISHY
  • 11,067
  • 25
  • 105
  • 197

2 Answers2

3

Simple, if you use your Android mobile phone with your google account. (For syncing contacts, photos, etc) Simply go to https://myaccount.google.com/device-activity There you should see your current mobile phone and maybe other devices. Click on "More Information" at your mobile phone - and there you see the date of your first Google login with this device, when you first booted and configured it.

0

Not unless your APK is installed on the device at first boot.

Kenneth
  • 3,957
  • 8
  • 39
  • 62
  • Yes the apk will be installed – WISHY Sep 08 '15 at 06:14
  • Maybe you can use something like this then: http://stackoverflow.com/questions/5290141/android-broadcastreceiver-on-startup – Kenneth Sep 08 '15 at 06:22
  • That's not what I want. Ii want the device's first boot time. That is when the device is purchased and it is booted the first time by an end user. – WISHY Sep 08 '15 at 06:35
  • If you have an APK preinstalled receiving the boot intent you can register it yourself? You won't get it from the device. – Kenneth Sep 08 '15 at 06:37
  • I would be having pre installed app. – WISHY Sep 08 '15 at 07:15
  • Ok, then you can use the link i pasted above, register for BOOT_COMPLETED and record the time with your app. – Kenneth Sep 08 '15 at 11:09