I’m unsure how many Android users ever want to know how many times their device has booted. However, if you are a curious tech enthusiast, you might be interested in learning little but important things about your device. With the help of ADB, you can not only speed up your Android phone and improve its battery life but also get various technical information about it. In this tutorial, we’ll 2 ADB commands that help you show the boot count of Android phones and tablets.
ADB is a versatile and powerful command-line tool for Android that allows users to perform basic and advanced tasks. It can help users tweak system settings, diagnose the device, manage permissions, simulate hardware buttons, make calls and send messages, etc. using commands. Having set up ADB on your Windows, Mac, or Linux, you’ll have a range of ADB commands to try.
The “Boot_Count” or “Phenotype_boot_count” string was introduced to Android with the Noughat SDK. So, if you have a device running Android 7, 8, 9, 10, 11, 12, 13, 14, or above, you can see its boot count via ADB. Please note that the boot count stat is saved in the settings of the device. It means that the counter is reset when a factory reset is performed. That’s to say, the commands mentioned in this article will show the number of times a device was booted since the last factory reset.
Steps to Check Boot Count via ADB
To find the boot count of your Android device using ADB, first, ensure you have ADB installed on your computer. Follow the steps below.
- Download and install the latest Android SDK Platform tools.
- Enable the USB Debugging settings in Developer Options.
- Connect your phone to your computer via a USB cable.
- Open the ‘platform-tools‘ folder and launch a command or terminal window with its path. You can do that either by entering “powershell” in the folder’s address bar or right-clicking inside the folder window and selecting the Open in Terminal option.
- When the command window is launched, execute the following command.
adb shell settings get global boot_count or adb shell settings get global Phenotype_boot_count
- You’ll see the boot count of your Android device in the output.
- There is yet another command that displays the boot count of Android devices.
adb shell settings list global
- Check the numerical value next to Phenotype_boot_count to find how many times your Android device has been booted.
You can also check the boot count of your Android via ADB without a computer or root using the aShell on your device. Just set up Shizuku on your phone or tablet, and install the aShell app to run ADB commands.
That’s all! Try the 3 ADB commands and share the boot count of your Android phone.