Reputation: 189
I keep on getting a ADB not responding please restart or wait error everytime i try to run my app from IntelliJ. I connected to my phone using adb connect 192.... from the terminal. Can anyone help?.
Upvotes: 2
Views: 1207
Reputation: 736
Having the same problem, the solution that worked for me:
sudo apt-get install ia32-libs
after that installation adb worked perfectly, no need to restart or reinstall anything.
My environment: InteliJ IDE 12.1.4, ubuntu 13.04 64bit, adb 1.0.31
Upvotes: 1
Reputation: 189
I managed to fix my problem by running this command in the terminal window sudo apt-get install libncurses5:i386. This installs some libraries which were missing.
Upvotes: 1