1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# show a list of devices adb devices #display realtime log of your device adb logcat -v long > logcat.txt #install app adb install /path/to/apk/file # get directory listing adb shell 'ls /sdcard/directory' # pulling adb pull /path/to/be/pulled/from /path/to/be/pulled/to # pushing adb push /path/to/be/pushed/from /path/to/be/pushed/to