You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Hi, as title describes to updrage my kotlin version iam not getting in which file to upgrade my kotlin version. tried sevral methods by updating version but didnt work any so please say me where i need to increase my org.jetbrains.kotlin:kotlin-gradle-plugin version. below are my build.gradle file and app/build.gradle file from vscode, please go through it and say the what need to be done.
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
kotlinOptions {
jvmTarget = '1.8'
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.ambuvians"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion 21
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
flutter {
source '../..'
dependencies {
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
implementation 'com.mapbox.maps:android:11.2.2'
please what would be the issue please let me know
To make sure your .gradle files are in the appropriate format, you can refer to:
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher.
The following dependencies do not satisfy the required version:
project ': location' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.20