Start Debugging
2023-08-18 Updated 2023-11-05 flutter

Flutter: Your project requires a newer version of the Kotlin Gradle plugin

Fix the Flutter error 'Your project requires a newer version of the Kotlin Gradle plugin' by updating the ext.kotlin_version in your build.gradle file to the latest Kotlin release.

[!] Your project requires a newer version of the Kotlin Gradle plugin.                                                                      
Find the latest version on https://kotlinlang.org/docs/releases.html#release-details, then update 
<project path>\android\build.gradle: 

ext.kotlin_version = '<latest-version>'

This can be fixed in two simple steps:

buildscript {
    ext.kotlin_version = '1.9.0'
[...]
< Back