Sobes.tech
Middle

What other ADB commands do you know besides adb install?

sobes.tech AI

Answer from AI

In addition to adb install, the following ADB commands are useful:

  • adb devices — shows a list of connected devices and emulators.
  • adb uninstall <package> — removes an app from the device.
  • adb logcat — displays system and app logs, useful for debugging.
  • adb shell — opens a command shell on the device.
  • adb push <local> <remote> — copies a file from the computer to the device.
  • adb pull <remote> <local> — copies a file from the device to the computer.
  • adb reboot — restarts the device.
  • adb bugreport — collects a full report on the device's state for diagnostics.

Example for viewing logs:

adb logcat -s MyAppTag:D *:S

This will show only logs with the tag MyAppTag.

What other ADB commands do you know besides adb… - sobes.tech