Android Studio does not find JDK during installation.How to solve?

5

Good afternoon,

I'm trying to install Android Studio on my Windows 7, however it never finds the folder with jdk installed. Even though I point it manually, it does not locate. I already inserted the environment variables as I saw it on the web and nothing happens.

Here are the variables and their values:

  

JAVA_HOME: C: \ Program Files \ Java \ jdk1.7.0_79

     

JDk_HOME: C: \ Program Files \ Java \ jdk1.7.0_79

     

STUDIO_HOME: C: \ Program Files \ Java \ jdk1.7.0_79

My Windows is 32bit.

What am I missing?

    
asked by anonymous 04.11.2015 / 20:28

1 answer

3

Remember that the% environment variable must be added to system variables and not User Variables .

Assuming you added this form, add one more system variable as follows:

  

Name: CLASSPATH

     

Value:.;% JAVA_HOME%

- TAKE CARE IN THIS FOLLOWING PROCEDURE

Next, edit variable Path , adding at the end JAVA_HOME , which is your previously created variable. Restart the pc and verify that jdk is recognized by the system by opening a command prompt screen and executing the command ;%JAVA_HOME%\bin\ . If it is recognized, several help options for this command will appear.

After this, try installing Android Studio, which will probably be recognized by the JDK.

Note: If it still does not get recognized, you can try the tips this link or from here .

    
06.11.2015 / 13:39