Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adb not responding with android studio on Ubuntu [duplicate]

well it might not the best combo. Using first time Ubuntu (13.04) and the new Android Studio. ;) However, if I try to start my app a error occurs with the message: "ADB not responding. You can wait more, or kill "adb" process manually and click 'Restart'". Of course tried the help from the message and restartet everything. Nothing help.

And yes I can start ADB directly and start a emu. Even the emu is started the error appear.

like image 433
staxx6 Avatar asked May 22 '13 20:05

staxx6


People also ask

How do I know if adb is installed Android Studio?

Firstly check if the adb is present in the SDK folder. For this, open C:\Users\Username\AppData\Local\Android\Sdk\platform-tools and check if adb.exe is present.


2 Answers

You may require additional libraries:

# sudo apt-get install ia32-libs

From the page on Troubleshooting Ubuntu

like image 83
Njall Avatar answered Oct 12 '22 13:10

Njall


On my machine I had to install lib32ncurses5 in order to have adb shipped with android studio to work

sudo apt-get install lib32ncurses5

like image 20
feder Avatar answered Oct 12 '22 13:10

feder