Skip to content

Instantly share code, notes, and snippets.

View ericaroy's full-sized avatar

Erica Roy ericaroy

View GitHub Profile
@ericaroy
ericaroy / Android Home
Last active May 2, 2024 15:03
Setting Android Home on Mac
Note for me to remember how to set Android Home on Mac
Open Terminal and type in..
nano ~/.bash_profile
Add the below paths
The path should be where your android installation is located
export ANDROID_HOME=/Users/username/Library/Android/sdk
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
Save file and type in terminal...
source ~/.bash_profile