Home > Software engineering >  i get this error after update Android Studio
i get this error after update Android Studio

Time:01-16

FAILURE: Build failed with an exception.

  • What went wrong: The supplied javaHome seems to be invalid. I cannot find the java executable. Tried location: C:\Program Files\Android\Android Studio\jre\bin\java.exe

  • Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

CodePudding user response:

I have found 3 links where people faced the same or something similar to what you are having. I hope these help! :)

IntelliJ Gradle Plugin: The supplied javaHome seems to be invalid

Android Studio - supplied javaHome is not a valid folder

The supplied javaHome seems to be invalid

CodePudding user response:

this solution worked for me:

If someone faces this error after Android Studio update to Android Studio Electric Eel | 2022.1.1 than simply follow following steps:

1- Go To android studio directory (Default C:\Program Files\Android\Android Studio) remove jre folder.

2- run cmd as administrator.

3- write (cd C:\Program Files\Android\Android Studio)

4- write (mklink /D "jre" "jbr")

  • Related