ADB Commands Cheatsheet for beginners

ADB Commands Cheatsheet for beginners

ADB Commands Cheatsheet

CommandDescription
adb devicesList all connected devices.
adb shellStart a remote shell on the connected device.
adb install <apk_file>Install an APK on the connected device.
adb uninstall <package_name>Uninstall an app from the connected device.
adb pull <remote> <local>Copy a file from the device to your computer.
adb push <local> <remote>Copy a file from your computer to the device.
adb logcatView device logs in real-time.
adb rebootReboot the connected device.
adb reboot bootloaderReboot the device into bootloader mode.
adb sideload <file.zip>Sideload a file (e.g., update.zip) on the device.
adb forward tcp:<port1> tcp:<port2>Forward a port from the host to the device.
adb kill-serverStop the ADB server.
adb start-serverStart the ADB server.

Leave a Reply

Your email address will not be published. Required fields are marked *