Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install android studio from ubuntu terminal

$ sudo add-apt-repository ppa:maarten-fonville/android-studio
Comment

how to install android studio in ubuntu

Below are the steps to install Android Studio in Ubuntu system:

1. Install JDK 6 or later

First, install Oracle JDK 8 (although you could also choose OpenJDK but it has some UI/performance issues) using WebUpd8 PPA.

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 make sure, it’s installed successfully, open a terminal and type (you should get the version number of the jdk you’ve installed e.g javac 1.8.0_11)

javac -version
2. Download and install Android Studio

Download the Android Studio package for Linux and extract it somewhere (e.g home directory). Then type :

cd android-studio/bin
./studio.sh
3. Install SDK Platforms

You need to install some SDK before you jump into building android apps. Click on Configure -> SDK Manager to open Android SDK Manager. Select the latest API (to test against target build, e.g API 19 (Android 4.4.2)) and some packages in Extras (Android Support Library and Android Support Repository). Then install the selected packages.
Comment

PREVIOUS NEXT
Code Example
Shell :: gitlab server certificate verification failed 
Shell :: force delete a hidden folder in linux 
Shell :: mkdir multiple directories windows 
Shell :: The application could not be installed: INSTALL_FAILED_CONFLICTING_PROVIDER 
Shell :: find mongodb process id 
Shell :: if statement in shell script 
Shell :: linux terminal show processes 
Shell :: what is samba in linux 
Shell :: install laravel on ubuntu 
Shell :: ver particiones montadas linux 
Shell :: git change date 
Shell :: how to create new branch 
Shell :: git init command 
Shell :: add anaconda to bash 
Shell :: git apply exclude file 
Shell :: Managing network connections in ubuntu 
Shell :: how to use mongodb in ubuntu terminal 
Shell :: yarn add global 
Shell :: configure github account ubuntu 
Shell :: read cpu temperature ubuntu 
Shell :: git force add 
Shell :: pip freeze for only project requires 
Shell :: add group linux 
Shell :: github checkout branch 
Shell :: removing letstencrypt from domain 
Shell :: open folder 
Shell :: Wine Mono is not installed 
Shell :: gnome shell extensions 
Shell :: amplify delete storage 
Shell :: git delete commit history 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =