Skip to content

vi.Tools.platform_tools

fukiame edited this page Mar 23, 2024 · 3 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.

Cài đặt

trên Windows

  • bằng Scoop

    Mở PowerShell (không dùng quyền admin), chạy các lệnh sau

# những cái đằng sau dấu # là ghi chú, bạn không cần gõ

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

# cài platform-tools
scoop install adb
  • thủ công

    luoiwf dungf, luoiwf theem

trên Linux

tra theo trình quản lí gói của distro bạn đang dùng, ở đây chỉ liệt kê những bản thông dụng

  • Debian và đồng bọn (Ubuntu, Linux Mint, Kali Linux, etc)
sudo apt update
sudo apt install android-tools-adb android-tools-fastboot
  • Arch Linux và đồng bọn (Manjaro, EndeavourOS, Parabola, etc)
sudo pacman -Syu
sudo pacman -S android-tools
Clone this wiki locally