I am facing this on my ubuntu(14.04) while running app. I am getting pop up with the message "ADB not responding. If you'd like to retry, then please manually kill "adb" and click 'Restart'". I have installed : sudo apt-get install lib32z1 lib32z1-dev lib32stdc++6 and i have also tried sudo adb kill-server and sudo adb start-server . I have already spent more then 4 hrs for this problem . How to fix this issue?
Asked
Active
Viewed 310 times
0
-
Possible duplicate of [How to make Android's aapt and adb work on 64-bit Ubuntu without ia32-libs (works for versions 12, 13 and 14)](http://stackoverflow.com/questions/19523502/how-to-make-androids-aapt-and-adb-work-on-64-bit-ubuntu-without-ia32-libs-work) – Alex P. Dec 18 '15 at 15:26
1 Answers
2
This worked for me in (Ubuntu 14.04):
sudo apt-get install lib32z1 lib32z1-dev lib32stdc++6

Sharath
- 691
- 8
- 23
-
after install what else need to do ? i just restarted android studio and run command sudo adb kill-server and sudo adb start-server – Mahesh Dec 18 '15 at 07:47
-