Download And Install ADB Fastboot Platform tools

Download And Install ADB Fastboot Platform tools

Two command-line tools that are commonly used for developing and modifying Android devices are Fastboot and Android Debug Bridge (ADB).

With the aid of ADB, developers can install and debug apps, copy files to and from the device, and run shell commands.

Conversely, Android devices can have their firmware or system images flashed to them using fastboot. Bootloader unlocking, custom recovery installation, and Android version updates are some of the most common uses for this tool.

Developers and power users frequently utilize both ADB and Fastboot to personalize and modify their Android devices.

Download Links:

ADB Fastboot or Platform tools can be downloaded from the official android developers website or following links

How to Install Android SDK Platform Tools:

  • it’s a portable program just extract the zip and use it according to your requirements

How to Install an APK File with Android SDK Platform tools:

  1. Connect your Android device to your computer using a USB cable.
  2. Enable Developer Options and USB Debugging on your device:
  • Go to Settings > About Phone > Software Information.
  • Tap on the Build Number 7 times to enable Developer Options.
  • Go to Settings > Developer Options and enable USB debugging.
  1. Download and install the Android SDK Platform-Tools package on your computer, which includes ADB and Fastboot.
  2. Open a command prompt or terminal window on your computer.
  3. Navigate to the platform tools directory where ADB is installed.
  4. Type the following command to install an APK file:
adb install "file Name"
ex. adb install whatsapp.apk

How to Install Stock Roms Via Android SDK Platform tools:

  1. Connect your Android device to your computer using a USB cable.
  2. Boot the device into Fastboot mode.
  • Turn off the device.
  • Press and hold the Volume Down and Power buttons simultaneously until the Fastboot logo appears.
  1. Open a command prompt on your computer.
  2. Navigate to the platform-tools directory where fastboot is Installed.
  3. type the following command to flash a system image
fastboot flash [partition-name] [path-to-image-file].img
  1. Replace [partition-name] with the name of the partition you want to flash (e.g., boot, system, recovery, etc.).
  2. Replace [path-to-image-file] with the path to the system image file you want to flash.
  3. Wait for the flash process to complete. It may take a few minutes to flash the system image.

Related

1 COMMENT

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.