To quickly reboot your Android device using ADB (Android Debug Bridge), you can follow these steps:
-
Install ADB: Ensure you have ADB installed on your computer. You can download it as part of the Android SDK Platform Tools.
-
Enable Developer Options on your Android device:
- Go to Settings > About Phone.
- Tap "Build Number" seven times to unlock Developer Options.
- Go back to Settings and locate Developer Options.
- Enable USB Debugging.
-
Connect your device to your computer: Use a USB cable to connect your Android device to your computer.
-
Open a Command Prompt or Terminal:
- Navigate to the folder where ADB is installed.
- Open a command prompt (Windows) or terminal (macOS/Linux) in this folder.
-
Check device connection: Enter the following command to ensure your device is recognized:
adb devicesYou should see your device listed. If prompted on the device, authorize the computer to communicate with the device.
-
Reboot the device: Enter the following command to reboot your device:
adb reboot
Your device should restart immediately. This command is especially useful for developers and tech enthusiasts who frequently require device reboots.


