Skip to content

en.Tools.platform_tools

fukiame edited this page Mar 23, 2024 · 4 revisions

Android SDK Platform-Tools is a component for the Android SDK. It includes tools that interface with the Android platform, primarily adb and fastboot.

Installation

on Windows

  • with Scoop

    Open PowerShell and execute the following commands

# note that the text behind the # symbols are just comments, you don't need to type them

# install Scoop
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

# install platform-tools
scoop install adb
  • manually

    to be added

on Linux

refer to your distro's package manager, here only lists the most widely used ones

  • Debian and its derivatives (Ubuntu, Linux Mint, Kali Linux, etc)
sudo apt update
sudo apt install android-tools-adb android-tools-fastboot
  • Arch Linux and its derivatives (Manjaro, EndeavourOS, Parabola, etc)
sudo pacman -Syu
sudo pacman -S android-tools
Clone this wiki locally