Installing Android Studio for Android development
I just downloaded the early access of Android Studio. While trying to run, I had to modify the environment variable and add
JAVA_HOME
and
C:\Progra~2\Java\jre1.6.0_07
Once I finished that hurdle, now I am receiving another error:
The environment variable JAVA_HOME (with the value of *C:\Progra~2\Java\jre1.6.0_07*) does not point to a valid JVM installation.
I looked through other similar question and was asked to check the version, so I did the following in CMD:
C:\Windows\System32>java -version
java version "1.7.0_07"
Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
Java HotSpot(TM) 64-Bit Server VM (build 23.3-b01, mixed mode)
From the result it seems like I have JVM. If I don't where do I download the JVM from?
lang-java