Android Debug Bridge

Commands
Start ADB server
adb start-server
List Android Virtual Devices
adb devices
Spawn a shell
adb shell
Restart ADB as root
adb root
Install an app
adb install myapp.apk
Push files to the device
adb push ./myapp.apk /sdcard/Download/
Pull a file from the device
adb pull /sdcard/Download/myapp.apk .
List installed packages
adb shell pm list packages

Last updated