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

Flutter can not run in virtual device

I have trouble with run flutter app in virtual device, i can run virtual device normaly but can not run with flutter app // My local.properties sdk.dir=C:\Users\dat nguyen\AppData\Local\Android\sdk flutter.sdk=C:\flutter flutter.buildMode=debug flutter.versionName=0.1.0 // My gradle.properties org.gradle.jvmargs=-Xmx4G -XX:+HeapDumpOnOutOfMemoryError android.useAndroidX=true android.enableJetifier=true C:Usersdat nguyen>flutter…

VIEW QUESTION

what is the problem with flutter just_audio when it gives the error below?

// ignore_for_file: library_private_types_in_public_api, avoid_print import 'package:connectivity/connectivity.dart'; import 'package:flutter/material.dart'; import 'package:just_audio/just_audio.dart'; import 'package:fluttertoast/fluttertoast.dart'; class HymnTune extends StatefulWidget { final String hymnMusicPath; const HymnTune({super.key, required this.hymnMusicPath}); @override _HymnTuneState createState() => _HymnTuneState(); } class _HymnTuneState extends State<HymnTune> with SingleTickerProviderStateMixin { late AnimationController iconController;…

VIEW QUESTION
Back To Top
Search