Ubuntu – Trying to install android-tools-adb and getting unable to locate package

16.04adbaptpackage-managementrepository

I wasn't able to install these packages when I used

sudo apt-get install android-tools-adb 

I get

unable to locate package android-tools-adb 

Can you help, please?

Best Answer

Don't know why this hadn't been put as an answer, I just put it here from Charles Green excellent comment.

android-tools-adb and android-tools-fastboot are in the universe repository. You can enable it in Software Center or just hit this one-liner which will enable and install everything.

sudo add-apt-repository universe && sudo apt-get update && sudo apt-get install android-tools-adb android-tools-fastboot
Related Question