Home > OS >  How do I upgrade java from 1.8 to 11
How do I upgrade java from 1.8 to 11

Time:08-27

I have an android app I am building using Android Studio. All of a sudden I received a build.gradle warning: Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.

the problem I see refers to the second line in this code;

plugins {
id 'com.android.application'
id 'kotlin-android'
}

I am running Android Studio on a MacBook pro. I have tried various fixes but most are for PC and since I am using a Mac they don't seem to help.

Does anyone have a solution.

CodePudding user response:

Setting -> BuildTool -> Gradle -> choose java 11 or download something as request

  • Related