gpt4 book ai didi

android - 尝试更新到 Kotlin 1.4.0 时出现奇怪的错误。如何使其与 Gradle 和 IntelliJ IDEA 2020.2.1 一起使用?

转载 作者:行者123 更新时间:2023-12-02 12:23:23 25 4
gpt4 key购买 nike

Kotlin 1.4.0 现在稳定了。因此,我想更新我的多模块 Android 项目以使用它。我将 IDEA 设置为使用 Kotlin 插件 1.4.0-release-IJ2020.2-1 并在我的 buildSrc build.gradle.kts 中使用 Kotlin DSL,我正在为 jvm 加载 Kotlin,如下所示:

plugins {
kotlin("jvm") version "1.4.0"
}
我的应用级插件 block 看起来像这样
plugins {
id("com.android.application")
id("com.google.gms.google-services")
kotlin("android")
kotlin("kapt")
id("kotlin-android-extensions")
id("androidx.navigation.safeargs.kotlin")
}
我还将 Kotlin 标准库添加到我的应用程序级别 build.gradle.kts 依赖项中
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.4.0")
现在尝试构建我的项目时,我收到多个错误,如下所示:
'let((T) -> R): R' is only available since Kotlin 1.3.50 and cannot be used in Kotlin 1.3
我不明白。 gradle 如何在这里尝试使用 Kotlin 1.3?关于如何解决这个问题的任何想法?改用 Kotlin v1.3.72 时它工作正常。
到目前为止我尝试了什么:
  • 清洁工程
  • 使缓存无效并重新启动
  • 删除.gradle文件夹并重启
  • 修复损坏的类路径

  • 更新
    忘了提到我也收到以下警告。稳定时如何不受支持?
    > Configure project :buildSrc
    WARNING: Unsupported Kotlin plugin version.
    The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `1.3.72` that might work differently than in the requested version `1.4.0`.

    最佳答案

    也许您应该明确地将 Kotlin 标准库添加到您的依赖项中?

    dependencies {
    implementation(kotlin("stdlib"))
    }
    在 Kotlin 1.4 中,不再需要添加此依赖项。该插件默认将 Stdlib 应用于它所应用的项目。
    来自 Kotlin 1.4 release notes :

    You no longer need to declare a dependency on the stdlib library in any Kotlin Gradle project, including a multiplatform one. The dependency is added by default.

    The automatically added standard library will be the same version of the Kotlin Gradle plugin, since they have the same versioning.

    关于android - 尝试更新到 Kotlin 1.4.0 时出现奇怪的错误。如何使其与 Gradle 和 IntelliJ IDEA 2020.2.1 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63686137/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com