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
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