Last active
June 24, 2020 22:33
-
-
Save cmpscabral/c757068cc183ed573f328b8da0351bab to your computer and use it in GitHub Desktop.
quasar_android.md
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
# 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