skip to Main Content

Flutter – Package Version compatibility issue

I am working on a Flutter project and encountered an issue when trying to add the sendgrid_mailer dependency. Here are my current dependencies in pubspec.yaml: dependencies: cupertino_icons: ^1.0.8 firebase_auth: ^4.19.5 firebase_core: ^2.31.0 flutter: sdk: flutter google_fonts: ^6.2.1 intl: ^0.19.0 mailer:…

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