Android Debug Bridge (ADB) is a command line tool to communicate with Emulator or connected android device. You can find the ADB in sdk/platform-tools folder. To execute these commends just follow the instructions below
This command is used to unistall the application from the device or from Emulator by using package name of the application.
If you want to know more about the ADB commands use the link below.
Open the command prompt Start --> Command Prompt (or) press win+R and enter cmd
open the location of ADB where it is located in your system then use these commands.
adb devices
This command is used to get what are the devices connected to the system.
adb install < path for .apk >
This command is used to install the .apk file into the device or to the Emulator without coping the .apk file into the device.
adb shell pm uninstall < package name >
No comments:
Post a Comment