adb push
adb push Upload a specified file from your computer to an emulator/device. adb push <local> <remote> adb push test.apk /sdcard Copies <android-sdk-path>/platform-tools/test.apk to /sdcard directory. adb push d:\test.apk /sdcard Copies d:\test.apk Read more »
adb pull
adb pull Download a specified file from an emulator/device to your computer. adb pull <remote> [local] adb pull /sdcard/demo.mp4 download /sdcard/demo.mp4 to <android-sdk-path>/platform-tools directory. adb pull /sdcard/demo.mp4 e:\ download /sdcard/demo.mp4 Read more »
adb shell pm clear
adb shell pm clear Deletes all data associated with a package. adb shell pm clear <PACKAGE> adb shell pm clear com.test.abc Notes: clearing app data, cache Read more about ADB.. Read more »
adb shell pm path
adb shell pm path Print the path to the APK of the given <PACKAGE>. adb shell pm path <PACKAGE> adb shell pm path com.android.phone Read more about ADB.. Read more »
adb usb
adb usb restarting ADB in USB mode. adb usb Read more about ADB.. Read more »
adb connect
adb connect use ADB over Wi-Fi adb connect <host>[:<port>] STEP 1. Connect to the device over USB. STEP 2. adb devices List of devices attached ######## device Notes: STEP 1,2 is Read more »
adb uninstall
adb uninstall Removes a android package from the emulator/device. adb uninstall [options] <PACKAGE> adb uninstall com.test.appadb uninstall -k com.test.app Keep the data and cache directories around after package removal. Read Read more »
adb start-server
adb start-server starts the adb server process adb start-server Notes: starts the server if it is not running. Read more about ADB.. Read more »
adb kill-server
adb kill-server It will terminates the adb server process adb kill-server Notes: kill the server if it is running. (terminal adb.exe process) Learn more about ADB.. Read more »
adb install
adb install Pushes an Android application (specified as a full path to an .apk file) to an emulator/device. adb install [option] <path> adb install demo.apk adb install -l demo.apk forward Read more »