Error starting Android Studio on Win10

0

I'm having an error wanting to start my Android Studio. I have already modified the environment variables, however the error keeps appearing. The error is as follows:

    
asked by José A. Solís 05.04.2018 в 19:17
source

1 answer

2

Do the following:

1) JDK version installed 1.8 as suggested in this link .

2) Set the Java path

3) Download the latest version of Android Studio from here , download the one with SDK and System Image

4) When installing Android Studio, run the configuration by right-clicking and select Ejecutar como administrador .

5) During installation, make sure that when the configuration requests the Android Studio and SDK path, the path does not contain any white space.

  

You can also try the following:

If during the installation you found your JDK, and you were not able to find it when you tried to open it, add an environment variable JDK_HOME to the variables in your system. It must contain the path to the directory ROOT of its JDK , that is% C:\Program Files\Java\jdk1.8.0_161\...

  

By the way, it is worth noting that if it is in x64 , you need to point to a JDK of 32 bits because the application is 32 bits.

    
answered by 05.04.2018 / 19:39
source