0% found this document useful (0 votes)
33 views1 page

Android Studio Path Setting in Mac

The document outlines the software required for Mac, specifically Android Studio and FireFlink Client, and provides detailed steps for setting the path for Android Studio. It includes terminal commands to configure environment variables and check the installation. Users are advised to verify the ANDROID_HOME path after setup.

Uploaded by

Alisha Shweta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views1 page

Android Studio Path Setting in Mac

The document outlines the software required for Mac, specifically Android Studio and FireFlink Client, and provides detailed steps for setting the path for Android Studio. It includes terminal commands to configure environment variables and check the installation. Users are advised to verify the ANDROID_HOME path after setup.

Uploaded by

Alisha Shweta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Soft wares Required in Mac:

 Android Studio
 FireFlink Client

Note: Once after installation, create a Project in Android Studio.

Steps to set path for Android Studio in Mac:

1. Open terminal in Mac and enter the below command and click on return key.
vim ~/.zshrc
2. Now click “I” key in the keyboard, so that you can insert the path in the
terminal.
3. Copy and Paste the below path to the terminal screen,
 export ANDROID_HOME= /Users/$USER /Library/Android/sdk
 export PATH=$ANDROID_HOME/tools:$PATH
 export PATH=$ANDROID_HOME/platform-tools:$PATH
 export PATH=$ANDROID_HOME/tools/bin:$PATH
 alias adb='/Users/$USER/Library/Android/sdk/platform-tools/adb'
 export
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk11.0_231.jdk/Con
tents/Home
 export PATH=$JAVA_HOME/bin:$PATH
4. After copy pasting the path, Click Shift+Esc+: in the Keyboard and type wq
and Click on return key.
5. Now Enter the following command to set the path and click on return key.
source ~/.zshrc
6. To check the path, enter the below command and click on return key.
echo $ANDROID_HOME

Note: It should reflect the ANDROID_HOME path, if not, set the path again.

You might also like