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()
}
}