http://developer.android.com/tools/building/building-cmdline.html

Set path to %SDK_DIR%\platform-tools

adb devices    Check which devices are connected

adb install <apk_file_name>   Install apk to device (device must be started first)
adb install –r <apk_file_name> Re-install apk

adb -s <mã thiết bị>install <apk_file_name>   Install apk to device nếu có 2 thiết bị cùng kết nối

adb uninstall <package_name> Uninstall un application. Use package name, not file name

adp push <local source> <remote location>  Upload resource to device
adp pop <remote location> <local source>   Download resource from device
adb logcat [filter]         Show console screen with debug information
                                       Filter println, use: tools\adb logcat
                                       System.out:I *:S

adb kill-server     Kill adb tool. Usefull if it crashed