Skip to content

Instantly share code, notes, and snippets.

@cmpscabral
Last active June 24, 2020 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmpscabral/c757068cc183ed573f328b8da0351bab to your computer and use it in GitHub Desktop.
Save cmpscabral/c757068cc183ed573f328b8da0351bab to your computer and use it in GitHub Desktop.
quasar_android.md
# Install graddle
Download the Gradle Binary Only Distribution from https://gradle.org/gradle-download/
Open a terminal
Run the following to unzip the android sdk to the Development directory that is under your user home directory
unzip ~/Downloads/gradle-3.1-bin.zip -d ~/Development
Open up the vi editor and edit your bash profile. We need to add in the GRADLE_HOME environment variable
vi ~/.bash_profile
To edit in vi hit i to enter edit mode and add the text below to the .bash_profile
export GRADLE_HOME=~/Development/gradle-3.1/bin
Press the esc key to exit edit mode
Press : (colon key) to enter command mode.
type wq and press enter to save and exit vi
Run the following to make the change active in your existing session
source ~/.bash_profile
Test it by running
echo $GRADLE_HOME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment