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 :: bash read multiple lines from user 
Shell :: gitlab change commit message 
Shell :: sudo cd command not found 
Shell :: chocolatey installation 
Shell :: dpkg install deb with dependencies 
Shell :: leap year program in shell 
Shell :: how to get ips of any website 
Shell :: how to see mac address linux 
Shell :: powershell check if software is installed 
Shell :: redwood open prisma studio 
Shell :: pytorch conda environment 
Shell :: reload crontab linux 
Shell :: combine two document together lnux 
Shell :: install choco windows 10 
Shell :: linux list environment variables 
Shell :: does git bash have bashrc 
Shell :: linux check core count 
Shell :: git ssh key ubuntu 
Shell :: how to install imagemagick in linux 
Shell :: how to set default editor in git 
Shell :: ubuntu docker host ip 
Shell :: ssh download file 
Shell :: sublime linux 
Shell :: rhythmbox 
Shell :: setup wordpress on ubuntu 
Shell :: windows 10 install wsl2 
Shell :: macos kill process on port 
Shell :: ubuntu service start example 
Shell :: git rev-parse --short HEAD 
Shell :: git change local branch name 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =