Open main menu

CDOT Wiki β

Changes

MAP524/DPS924 Lab 1

561 bytes added, 13:53, 30 June 2015
Part A: Setting up Android Studio on Linux
<li value="5"> At this point you should be able to install any updates, if there are any, by clicking "Check for updates" at the bottom of the window.</li>
<li> You can now close Android Studio.</li>
</ol>
 
== Part B: Configure your environment ==
 
<ol>
<li>In a terminal window, edit your .bashrc file to set your PATH and other environment variables.</li>
<pre>export PATH=/home/$USER/android-studio/gradle/gradle-2.2.1/bin:$PATH:/home/$USER/Android/Sdk/tools:/home/$USER/Android/Sdk/platform-tools:/home/$USER/bin
export ANDROID_SDK_HOME=/home/$USER/Android/Sdk
export HISTTIMEFORMAT='%F %T '
export HISTSIZE=2000</pre>
<li>You should now be able to run the gradle command without the ./ prefix. Try running this command to verify:</li>
<pre>gradle -h</pre>
</ol>