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.