Android studio 2.2 shows Error: CreateProcess = 216 error

I just installed my Android Studio 2.2, but I keep getting the error message

"Error: CreateProcess = 216 error. This version of% 1 is not compatible with the version of Windows you are running on. Check the information about your computer system and contact the software publisher."

I tried everything I could, but still did not work. Check the attached image to see a screenshot of my studio android studio android studio showing Error: CreateProcess Error = 216

+4
source share
2 answers

Try this solution @ user6442395

1) Install jdk1.8 ...

2) In AndroidStudio File-> Project Structure-> SDK Location, select the directory where the JKD is located, by default Studio uses the built-in JDK, but for some reason it gives an error = 216.

3) Click OK.

+3
source

You must change the jdk location in the project structure

Follow these steps

Go to file -> project structure -> sdk location

Deselect Use built-in jdk (recommended)

Then change the jdk location to C: \ Program Files \ java \ jdk1.8.0_101

Then click “OK” and wait for the assembly to complete.

+3
source

Source: https://habr.com/ru/post/1656376/


All Articles