ADB Logcat command
ADB Logcat command This is one of the debugging commands. When you want to provide logs to your OEM or ROM developer, this command will help you. It will display Read more »
ADB Version command
Newer versions of ADB might support the old commands, but the older versions of ADB might not support all the new commands. So if you try a command of a Read more »
ADB Help command
If you’ve used Linux or Unix based operating systems, you might know that every command has a “-h” which helps you with syntax and usage description. This command is similar, 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 shell pm list packages
adb shell pm list packages Prints all packages, optionally only those whose package name contains the text in <FILTER>. adb shell pm list packages [options] <FILTER> adb shell pm list 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 forward
adb forward forward socket connections adb forward <local> <remote> adb forward tcp:8000 tcp:9000 set up forwarding of host port 8000 to emulator/device port 9000 Read more about ADB Commands.. Read more »