2

I am having trouble installing the Android SDK, specifically with Eclipse. Every time i try to open it, I get this error message:

Error

That file exists in that path, and i have no idea why it cant be opened.

jvm.dll

Pip
  • 4,387
  • 4
  • 23
  • 31

2 Answers2

2

Working pairings of OS, JDK and Eclipse Android SDK:

32-bit OS - 32-bit JDK - 32-bit Eclipse -32 bit android sdk (32-bit only)
64-bit OS - 32-bit JDK - 32-bit Eclipse -32 bit android sdk
64-bit OS - 64-bit JDK - 64bit Eclipse - 64 bit android sdk(64-bit only)
Sunil Kumar
  • 7,086
  • 4
  • 32
  • 50
0

First, make sure that you're version of Eclipse and JDK match, either both 64-bit or both 32-bit.

Second, the -vm argument in eclipse.ini should point to the java executable. See http://wiki.eclipse.org/Eclipse.ini for examples.

Dennis Kriechel
  • 3,719
  • 14
  • 40
  • 62