Skip to content

Instantly share code, notes, and snippets.

@tobrun
Created November 4, 2013 08:46
Show Gist options
  • Save tobrun/7299827 to your computer and use it in GitHub Desktop.
Save tobrun/7299827 to your computer and use it in GitHub Desktop.
Adding platform tools to path (OSX)
// create .bash_profile
touch .bash_profile
// open file with TextEdit
open -e .bash_profile
// insert line into TextEdit
export PATH=$PATH:/Users/tvn/Software/adt-bundle-mac-x86_64-20130911/sdk/platform-tools/
// save TextEdit and reload file
. .bash_profile
// check if adb is set into path
adb version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment