Start Debugging
2023-08-18 Aktualisiert 2023-11-05 flutter Edit on GitHub

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

Beheben Sie den Flutter-Fehler 'Your project requires a newer version of the Kotlin Gradle plugin', indem Sie ext.kotlin_version in Ihrer build.gradle auf die neueste Kotlin-Version aktualisieren.

[!] 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>'

Das lässt sich in zwei einfachen Schritten beheben:

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

Comments

Sign in with GitHub to comment. Reactions and replies thread back to the comments repo.

< Zurück