Skip to content

Instantly share code, notes, and snippets.

@wenzhixin
Last active January 16, 2024 21:15
Show Gist options
  • Save wenzhixin/43cf3ce909c24948c6e7 to your computer and use it in GitHub Desktop.
Save wenzhixin/43cf3ce909c24948c6e7 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 command line install android sdk
# install openjdk
sudo apt-get install openjdk-7-jdk
# download android sdk
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz
tar -xvf android-sdk_r24.2-linux.tgz
cd android-sdk-linux/tools
# install all sdk packages
./android update sdk --no-ui
# set path
vi ~/.zshrc << EOT
export PATH=${PATH}:$HOME/sdk/android-sdk-linux/platform-tools:$HOME/sdk/android-sdk-linux/tools:$HOME/sdk/android-sdk-linux/build-tools/22.0.1/
EOT
source ~/.zshrc
# adb
sudo apt-get install libc6:i386 libstdc++6:i386
# aapt
sudo apt-get install zlib1g:i386
@Jullies
Copy link

Jullies commented Oct 3, 2017

Thank You

@canhphong
Copy link

thanks

@alejandrohn
Copy link

Thanks

@welcomepkw
Copy link

thanks bro!

@M97Chahboun
Copy link

Thank you !

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