I did a fresh install of the Android Studio Flamingo and tried to run a flutter code project but encounter this error code.
Failed to apply plugin 'com.android.internal.application'.
Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
I tried the solutions posted on stackoverflow but my Android Studio does not have the Gradle JDK selection option
Can anyone help?
I faced a slightly different problem, but I think the resolution could be the same.
The error I had was "class file major version 61", and after reading this, I understood I needed my project to compile with Java 11, and I think that will resolve your issue as well.
Steps to fix:
brew install openjdk@11
android/gradle.properties
, add lineorg.gradle.java.home=/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home
The good thing here is that you aren't changing your java home value or anything so if you need java 1.8 for other projects that's fine, you're just telling this project to compile with 11