Install Android Studio in Ubuntu
Install Android Studio in Ubuntu A quick tutorial to get you started on building your Android app In this piece, we’ll cover how to install Android Studio in Ubuntu system. Simply follow the steps below and start building your Android app! Install JDK 6 or Later Let’s get started by installing Oracle JDK 8 with the following commands: sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install oracle-java8-set-default To confirm the installation was successful, open a terminal and type: javac -version Set the JAVA_HOME environment variable to the location of your JDK installation. ( http://www.wikihow.com/Set-Up-Your-Java_Home-Path-in-Ubuntu ) Download and Install Android Studio Download the Android Studio package for Linux and extract it somewhere (e.g home directory). To launch Android Studio, open a terminal, navigate to the android-studio/bin/ directory, and execute studi...