
ADB Commands Cheatsheet for beginners
admin
- 0
ADB Commands Cheatsheet
Command | Description |
---|---|
adb devices | List all connected devices. |
adb shell | Start 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 logcat | View device logs in real-time. |
adb reboot | Reboot the connected device. |
adb reboot bootloader | Reboot 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-server | Stop the ADB server. |
adb start-server | Start the ADB server. |