7

The environment variable JAVA_HOME(C:\Program Files\Java\jdk1.8.0_05\bin) does not point to a valid JVM installation.

I am getting this error when am launching android-studio.. And i also Tried similar questions in stack-overflow but nothing worked. am using 32bit

I set the variables as:

variable name : JAVA_HOME Variable value : C:\Program Files\Java\jdk1.8.0_05\bin

Squonk
  • 48,331
  • 18
  • 101
  • 135
diwa
  • 159
  • 2
  • 2
  • 10

2 Answers2

11

Change the JAVA_HOME into C:\Program Files\Java\jdk1.8.0_05

VinhNT
  • 1,069
  • 8
  • 13
0

Point your JAVA_HOME variable to C:\Program Files\Java\jdk1.8.0_xx\; where "xx" is the update number (make sure this matches your actual system directory name).

NOTE: be sure to put the 'JAVA_HOME' path variable in the System variables rather than -the user variables. If the path variable is in User the Android Studio will not find the path.

Batz
  • 322
  • 1
  • 7
  • 15