Home > Software engineering >  Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. React Native
Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. React Native

Time:04-10

I get the same issue as in this question when I do react-native run-android. I think it wants java 11 but I want to continue with 1.8. How can I do it?

Android Studio - 'com.android.internal.application' Java 11 - fix gradle projects not visibile in Android studio

CodePudding user response:

what you need to do;

  1. log into my computer
  2. right click and select properties
  3. enter advanced system settings
  4. add new path name: JAVA_HOME
  5. select the java 11 jdk location and save it

or

  1. open cmd for adminstator
  2. setx JAVA_HOME -m "path"

After doing all of them, delete your old React Native project and install a new one.

or

  1. open project with android stiduo
  2. find node_moduls -> react-native-gradle-plugin -> build.gradle -> change java 1.8 to java 11.0
  • Related