Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which gradle version is compatible with java 20

I am facing the issue in build.gradle file in android studio while using flutter

I tried to upgrade the version to java 20 but now this is also not compatible with the build version

like image 300
Satbharai Sethar Avatar asked Sep 03 '25 13:09

Satbharai Sethar


2 Answers

Based on the Gradle compatibility docs, Java 20 and up is not yet supported.

like image 55
AbeCoull Avatar answered Sep 05 '25 15:09

AbeCoull


8.1 can target Java 20, but not execute on Java 20. See the release notes here: https://docs.gradle.org/8.1/release-notes.html#jvm

8.2 will have full Java 20 support. See the related issue here: https://github.com/gradle/gradle/issues/23488

like image 22
Keegan Avatar answered Sep 05 '25 17:09

Keegan