Mobile
ADB
1
2
ADB – Android Debug Bridge
ADB
ADB, Android Debug Bridge, is a command-line utility included in Google’s
Android SDK. ADB can control your device over USB from a computer, copy files
back and forth, install and uninstall apps, run shell commands, and more.
3
ADB
ADB
To enable the ADB option Follow the instruction below:
• Download ADB
• Enable Developer option - Settings > About phone and tap Build number seven
times.
• Enable USB debugging – Settings > Developer options
• Download the driver for the phone
• Connect the phone to the computer with cable
• Open cmd in the ADB folder and run: ADB devices
• Allow the prompt connection on the phone
4
ADB - Commands
ADB - Commands
Simple ADB commands:
• adb pull - Download a specified file from an emulator/device to your computer.
• adb push <local> <remote> - Upload a specified file from your computer to an
emulator/device.
• adb install [option] <path> - Pushes an Android application (specified as a full
path to an .apk file) to an emulator/device.
• adb uninstall [options] <PACKAGE> - Removes a package from the
emulator/device.
• adb shell – allow to run shell commands on at android.

Adb

  • 1.
  • 2.
    2 ADB – AndroidDebug Bridge ADB ADB, Android Debug Bridge, is a command-line utility included in Google’s Android SDK. ADB can control your device over USB from a computer, copy files back and forth, install and uninstall apps, run shell commands, and more.
  • 3.
    3 ADB ADB To enable theADB option Follow the instruction below: • Download ADB • Enable Developer option - Settings > About phone and tap Build number seven times. • Enable USB debugging – Settings > Developer options • Download the driver for the phone • Connect the phone to the computer with cable • Open cmd in the ADB folder and run: ADB devices • Allow the prompt connection on the phone
  • 4.
    4 ADB - Commands ADB- Commands Simple ADB commands: • adb pull - Download a specified file from an emulator/device to your computer. • adb push <local> <remote> - Upload a specified file from your computer to an emulator/device. • adb install [option] <path> - Pushes an Android application (specified as a full path to an .apk file) to an emulator/device. • adb uninstall [options] <PACKAGE> - Removes a package from the emulator/device. • adb shell – allow to run shell commands on at android.