skip to Main Content

Android Studio – How can I solve the Kotlin Version Error in flutter?

The current Kotlin version is 1.9.22. I updated '' with '1.9.22', but I'm still encountering the same error even after updating. android>build.gradle buildscript { ext.kotlin_version = '1.9.22' repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:7.1.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }…

VIEW QUESTION

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

I’m developing a Flutter application in Android Studio. After upgrading the Flutter version from around 2.8 to 3.19.5, the Android build on a physical device no longer works. The error is as follows: e: /Users/shun/.gradle/caches/modules-2/files-2.1/androidx.lifecycle/lifecycle-common/2.7.0/85334205d65cca70ed0109c3acbd29e22a2d9cb1/lifecycle-common-2.7.0.jar!/META-INF/lifecycle-common.kotlin_module: Module was compiled with an…

VIEW QUESTION
Back To Top
Search