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,735
  • 19
  • 103
  • 135
diwa
  • 169
  • 2
  • 2
  • 11

2 Answers2

11

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

VinhNT
  • 1,091
  • 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
  • 342
  • 1
  • 5
  • 15