Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Latest commit

 

History

History
25 lines (21 loc) · 941 Bytes

MACOSX_INSTALLATION.md

File metadata and controls

25 lines (21 loc) · 941 Bytes

INSTALL VIA HOMEBREW

brew install android-platform-tools

MANUAL INSTALLATION

  • Delete old installation: rm -rf ~/.android-sdk-macosx/*
  • Go here and click on SDK Platform-Tools for Mac
  • Navigate to Downloads dir: cd ~/Downloads
  • Unzip tools: unzip platform-tools-latest*.zip
  • Move contents anywhere, e.g:
    • mv platform-tools-latest.../ ~/.android-sdk-macosx/platform-tools
  • Add platform-tools to $PATH:
    • echo "export PATH=$PATH:~/.android-sdk-macosx/platform-tools/" >> ~/.bash_profile
  • Source bash profile: source ~/.bash_profile

EXAMPLE (MANUAL)

rm -rf ~/.android-sdk-macosx/*
cd ~/Downloads
unzip platform-tools*
mv platform-tools-latest... ~/.android-sdk-macosx/platform-tools
echo "export PATH=$PATH:~/.android-sdk-macosx/platform-tools/" >> ~/.bash_profile
source ~/.bash_profile