Last active
January 26, 2022 03:17
-
-
Save JaveedIshaq/b50b0252255412de36debe7dd4d5b663 to your computer and use it in GitHub Desktop.
commands to Android Studio in terminal path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add the following lines to your $HOME/.bash_profile or $HOME/.bashrc config file: | |
export ANDROID_HOME=$HOME/Android/Sdk | |
export PATH=$PATH:$ANDROID_HOME/emulator | |
export PATH=$PATH:$ANDROID_HOME/tools | |
export PATH=$PATH:$ANDROID_HOME/tools/bin | |
export PATH=$PATH:$ANDROID_HOME/platform-tools | |
// add Flutter to path in linux mint/ ubuntu | |
export PATH="$PATH:/home/javeed/flutter/bin" | |
// for macOS zsh | |
export PATH="$PATH:/Users/javeedishaq/flutter/bin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment