Answers for "your project requires a newer version of the kotlin gradle plugin. flutter"

1

your project requires a newer version of the kotlin gradle plugin. flutter

You need to change the kotlin version in your android root project, 
projectName/android/build.gradle
Change the version at ext.kotlin_version line:
buildscript {
    ext.kotlin_version = '1.6.10' // Change here
    repositories {
        google()
        jcenter()
    }
}
Posted by: Guest on February-27-2022

Code answers related to "your project requires a newer version of the kotlin gradle plugin. flutter"

Browse Popular Code Answers by Language