Skip to content

Instantly share code, notes, and snippets.

@Ericwyn
Created October 9, 2019 07:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Ericwyn/e89553d8dfcb9fc9066da506d9e6fd93 to your computer and use it in GitHub Desktop.
Save Ericwyn/e89553d8dfcb9fc9066da506d9e6fd93 to your computer and use it in GitHub Desktop.
install-last-android-sdk-platform-tools
# !bash.sh
if [ `id -u` -eq 0 ]; then
wget https://dl.google.com/android/repository/platform-tools-latest-linux.zip
unzip platform-tools-latest-linux.zip
sudo cp -R -f platform-tools/* /bin/*
rm -rf platform-tools/
rm platform-tools-latest-linux.zip
echo "install latest platform success"
/bin/fastboot --version
else
echo "please use 'sudo' to run the install script"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment