Kotlin 卡在 1.3.31 版本的 Android Studio 项目上

Posted

技术标签:

【中文标题】Kotlin 卡在 1.3.31 版本的 Android Studio 项目上【英文标题】:Kotlin stuck on version 1.3.31 Android Studio project 【发布时间】:2021-12-01 08:29:00 【问题描述】:

我是新手,我买了一个 Flutter 项目并试图在 android Studio 中启动它。

该项目使用的是旧版本的 Android Gradle,我将其更新为 7.0.2。但是现在当我尝试构建时,我得到了错误:

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.40 and higher.

我检查了文件 android/build.gradle ext.kotlin_version = '1.3.50'

这是完整的文件:

buildscript 
    ext.kotlin_version = '1.3.50'
    repositories 
        google()
        jcenter()
        maven 
          url "https://dl.bintray.com/kotlin/kotlin-eap/"
        
    

    dependencies 
        classpath 'com.android.tools.build:gradle:7.0.2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:4.3.0'
    


allprojects 
    repositories 
        google()
        jcenter()
    


rootProject.buildDir = '../build'
subprojects 
    project.buildDir = "$rootProject.buildDir/$project.name"

subprojects 
    project.evaluationDependsOn(':app')


task clean(type: Delete) 
    delete rootProject.buildDir

我尝试更改许多版本,但结果始终相同。我检查了很多答案,但仍然找不到其他可能的原因。

【问题讨论】:

【参考方案1】:

试试这个:

buildscript 
ext.kotlin_version = '1.5.30'
repositories 
    google()
    mavenCentral()


dependencies 
    classpath 'com.android.tools.build:gradle:4.2.0'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'com.google.gms:google-services:4.3.10'
    classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'

【讨论】:

以上是关于Kotlin 卡在 1.3.31 版本的 Android Studio 项目上的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Android Studio 编译报错 ( Module was compiled with an incompatible version of Kotlin. ) 2

kotlin新工程

Kotlin 官网 文档 教程 视频 资源

Google 如何看待 Kotlin 与 Android

Kotlin的android扩展:对findViewById说再见(KAD 04)

将APP转换成100%Kotlin总结