1

I am using Ubuntu 64 bit Ubuntu 14.4 LTS. When I am trying get Android Device Monitor from android Studio "Initialising ADB" dialog shows forever.

Event Log error is

IllegalArgumentException: java.io.IOException: Cannot run program "/home/Android/Sdk/platform-tools/adb": error=13, Permission denied

Im using JDK java-7-oracle

Im getting list of devices on

adb devices

from terminal.

Can anyone help me?

1

2 Answers 2

3

Try all these:

  1. confirm that you get adb version by typing adb version in console. If working check the adb which is running is from/home/Android/Sdk/platform-tools/adb. use which adb for this.
  2. Check AVD manager and check that android tools are installed.
  3. Check that adb wasn't installed by other user.
  4. Install IA32 if you are using 64 bit architecture.
  5. Check permission for android sdk folder. if not give chmod -R 777 platform-tools.
  6. Check platform-tools folder is added to your path.

Try Try!

2
  • adb is not from my android sdk. Commented Mar 28, 2016 at 15:15
  • sorry, I removed my comment! And good you resolved your problem.
    – Rilwan
    Commented Apr 3, 2016 at 13:18
-2

Install the 32bit library

apt-get install ia32-libs

2

Not the answer you're looking for? Browse other questions tagged or ask your own question.