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
Back To Top
Search