Home > database >  JAVA_HOME is set to an invalid directory Android Studio Flutter
JAVA_HOME is set to an invalid directory Android Studio Flutter

Time:01-14

type here

Since the last update of android studio to Electric Eel 2022.1.1, I'm facing this issue while running my flutter project on my phone:

Launching lib\main.dart on Redmi Note 8 Pro in debug mode...
Running Gradle task 'assembleDebug'...

ERROR: JAVA_HOME is set to an invalid directory: C:\Program Files\Android\Android Studio\jre

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation.
Exception: Gradle task assembleDebug failed with exit code 1

And JAVA_HOME variable was sat on 'C:\Program Files\Android\Android Studio\jre'.

I've tried all possible solution that I've looked for but none of them worked. It seemes the problem is related to the latest version of Android Studio.

What is the issue and how to solve it.

CodePudding user response:

The problem is because of trace of old Android Studio java folder, just delete this folder and it starts working:

C:\Program Files\Android\Android Studio\jre

The new Android Studio Electric Eel is using jbr, not jre.

  • Related