skip to Main Content

Flutter version 3.19.2 requires a newer version of the Kotlin Gradle plugin. /android/build.gradle: ext.kotlin_version = '<latest-version>'

I have a question about Flutter version 3.19.2. In this version, Flutter has removed the buildscript from the /android/build.gradle file: allprojects { repositories { google() mavenCentral() } } rootProject.buildDir = '../build' subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { project.evaluationDependsOn(':app')…

VIEW QUESTION

Flutter – I can't found buildscript in build.gradle

I know that androidbuild.gradle includes buildscript. but build.gradle in my project doesn't have buildscript. so I can't solve following error. C:/Users/JG-H/.gradle/caches/transforms-3/2ae0bf9da71bed198914dc960cb2262f/transformed/jetified-kotlin-stdlib-common-1.9.0.jar!/META-INF/kotlin-stdlib-common.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version…

VIEW QUESTION
Back To Top
Search