Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guipmourao/3e7edc951b043f6de30ca15a5cc2be40 to your computer and use it in GitHub Desktop.
Save guipmourao/3e7edc951b043f6de30ca15a5cc2be40 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 command line install android sdk
# create sdk folder
export ANDROID_HOME=/opt/android-sdk-linux
sudo mkdir -p $ANDROID_HOME
# install openjdk
sudo apt-get install openjdk-8-jdk
# download android sdk
cd $ANDROID_HOME
sudo wget https://dl.google.com/android/repository/tools_r25.2.3-linux.zip
sudo unzip tools_r25.2.3-linux.zip
cd tools
# install all sdk packages
sudo ./android update sdk --no-ui
# set path
export PATH=${PATH}:$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools:$ANDROID_HOME/build-tools/25.0.2/
source /etc/profile
@datasmurfen
Copy link

Consider use 26.0.2 instead 👍

@GiorgosK
Copy link

GiorgosK commented Feb 6, 2018

Get the latest command line tools zip file from here https://developer.android.com/studio/index.html

@Nottt
Copy link

Nottt commented Feb 7, 2018

However lands here from google like me, you can do this on ubuntu 16.04

apt-get install android-tools-adb

@suhassurse8421
Copy link

its really working guys...great guide for installing android sdk

@Dhani92
Copy link

Dhani92 commented Mar 11, 2018

thank you so much.It works !!

@renzo-blockchain
Copy link

Thanks man

@lifayi2008
Copy link

Thanks a lot

Copy link

ghost commented Jan 30, 2019

Thank you

@zesteros
Copy link

Thanks

@saibharath-g9
Copy link

Thanks for your contribution

@Pasuvan
Copy link

Pasuvan commented Feb 14, 2020

How to check it's working?

@zaphodikus
Copy link

apt-get install android-tools-adb does not help me much, the sdkmanager does not get provisioned, and the path and environment neither. Discrete component download and unzip appears still the most reliable.

@Linas987
Copy link

I'm working on a virtual machine with a very limited amount of space. Is it possible to install only the latest versions or a specific version of SDK package?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment