This file contains 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 |