Last active
November 3, 2023 20:09
-
-
Save ThEMarD/d5c071682cc27c9e0a1080ca399f9294 to your computer and use it in GitHub Desktop.
Update Ubuntu's platform-tools package manually
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you've installed adb and fastboot via apt install on Ubuntu and realize they're old versions, then here is how to manually update them. | |
wget https://dl.google.com/android/repository/platform-tools-latest-linux.zip | |
unzip \platform-tools-latest-linux.zip | |
sudo cp platform-tools/adb /usr/lib/android-sdk/platform-tools/ | |
sudo cp platform-tools/fastboot /usr/lib/android-sdk/platform-tools/ | |
check that it worked with: | |
adb --version | |
fastboot --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment