Android Debug Bridge
Commands
Start ADB server
adb start-serverList Android Virtual Devices
adb devicesSpawn a shell
adb shellRestart ADB as root
adb rootInstall an app
adb install myapp.apkPush 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 packagesLast updated