adb - Android debug

2019 Using docker

1. run adb server

docker run -d --privileged -v /dev/bus/usb:/dev/bus/usb --name adbd sorccu/adb

1. run adb command, need to autorize on phone

~$ docker run --rm -ti --net container:adbd sorccu/adb adb devices
List of devices attached
977673415955384f5a      device

2016 Commands

adb start-server

adb reboot-bootloader adb root

adb logcat

adb push C:\SANKET\apps\papertoss.apk /sdcard/nimbuzz

adb shell Run remote shell interactively

...