Install Andoid Studio on Ubuntu

Introduction

To be successful, Android developers need a good grasp of the Java Language(or Kotlin), Andoid API’s, and Android application architecture. It’s also important to use an appropriate and effective development environment. For many years, Eclipse IDE with the ADT plugin was the preferred platform for Android development. Today, it’s Andoid Studio.

Android Studio is Google’s officially supported IDE for developing Android apps. This IDE is based on Intellij IDEA, which offers a powerful code editor and developer tools.

Installation

Setting up Android Studio takes just a few commands.

First command is to install Java through this command, if you already installed Java skip this step:

sudo add-apt-repository ppa:webupd8team/java

And then update command:

sudo apt update

And then installation command:

sudo apt-get install oracle-java8-installer

When installation start, the following dialog box popup on your screen for the configuration of Java:

jdk1.png

Read More »