In Mac, the adb is located at /Library/Android/sdk/platform-tools/
list connected devices
./adb devices
list installed applications
./adb shell pm list packageslist connected devices
./adb devices
list installed applications
clean app data
uninstall app using adb
./adb logcat -d > ~/Documents/logcat.txt
clear logcat
./adb logcat -c
browse directory on device
./adb shell ls /sdcard/Pictures
copy files from device to computer
./adb pull /sdcard/Pictures/ ~/Documents/Pictures
remove files on device
./adb shell rm /sdcard/Pictures/*
clear logcat
./adb logcat -c
browse directory on device
./adb shell ls /sdcard/Pictures
copy files from device to computer
./adb pull /sdcard/Pictures/ ~/Documents/Pictures
remove files on device
./adb shell rm /sdcard/Pictures/*
Comments