Muljin / msal-flutter

BSD 3-Clause "New" or "Revised" License
9 stars 37 forks source link

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher #22

Closed johnzhu123 closed 1 year ago

johnzhu123 commented 1 year ago

when I build android, it complains

my build.gradle

buildscript {
    ext.kotlin_version = '1.7.10'
    repositories {
        google()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:7.3.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

how can i fixed this

johnzhu123 commented 1 year ago

never mind, just change the ext.kotlin_version to 1.5.20, all works fine