Answers for "how to use adb command line on mac"

2

install adb on mac

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
 brew cask install android-platform-tools
 adb devices
Posted by: Guest on November-04-2020
1

how to access adb globally on mac

echo 'export ANDROID_HOME=/Users/$USER/Library/Android/sdk' >> ~/.bash_profile
echo 'export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools' >> ~/.bash_profile
Posted by: Guest on June-22-2020

Code answers related to "how to use adb command line on mac"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language