How to install ADB (Android Debug Bridge)

Anuradh
1 min readAug 7, 2018

--

Android Debug Bridge

Install for Mac

  1. Install homebrew :

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install"

2. Install adb

brew cask install android-platform-tools

3. Start or Check the installation with

adb devices

Or use below like to download and install android debug bridge binary : Download and install Binary for Mac.

Install for Linux

Use below link to download and install the Android debug bridge binaries. Download and install Binary for Linux.

Install for Windows

Use below link to download and install the Android debug bridge binaries for windows. Download and install Binary for Windows.

--

--