skip to Main Content

Flutter Build Fails with Kotlin Version Incompatibility

I am working on a Flutter project and I'm facing an issue related to Kotlin versions. When I try to build my project, I get the following error messages indicating a version mismatch between Kotlin modules: e: C:/Users/digit/.gradle/caches/transforms-3/431ce31617111116ed092b20fb775fda/transformed/jetified-kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib-jdk7.kotlin_module: Module was…

VIEW QUESTION

Remote JSON parsing (Kotlin)

Sorry for newbie question: I'm new in Android/Kotlin. There is the RecyclerView in which a remote JSON is being parsed. Here is an actual code of the Activity with this RecyclerView: import android.os.Bundle import android.widget.Toast import androidx.appcompat.app.AppCompatActivity import androidx.recyclerview.widget.LinearLayoutManager import…

VIEW QUESTION

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