错误:找不到org.jetbrains.kotlin:kotlin-stdlib-jre8:1.3.10。在Android Studio 3.3 RC 1中

时间:2018-12-06 05:52:59

标签: android kotlin

将android studio更新到 3.3 RC 1 并构建项目(在android studio的先前版本中完美运行)时,它向我显示以下错误:

ERROR: The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.0 and higher.
The following dependencies do not satisfy the required version:
root project 'GPS_Speedometer_material' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.71

根据此错误,我已经更新了kotlin版本1.2.17 to 1.3.0

但是它显示了以下错误:

Could not find org.jetbrains.kotlin:kotlin-stdlib-jre8:1.3.0. 

还尝试使用最新的kotlin版本,但存在相同的错误:

Could not find org.jetbrains.kotlin:kotlin-stdlib-jre8:1.3.10.

这是我的 build.gradle

buildscript {
    ext.kotlin_version = '1.3.10'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0-rc01'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
        classpath "com.github.dcendents:android-maven-gradle-plugin:2.0"
        classpath 'com.google.gms:google-services:4.0.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2 个答案:

答案 0 :(得分:4)

尝试更改kotlin-stdlib-jre8 => kotlin-stdlib-jdk8

Kotlin standard library artifacts and split packages

根据herejre8的最新版本为1.2.71。

答案 1 :(得分:0)

请按照以下步骤操作: 1.打开您的项目。 2.转到Gradle按钮的左侧。 3. enter image description here 4.单击图像显示上方的按钮。 5.如果是这种类型的视图,则您不在离线模式下。 6.转到“构建并重新打包项目”。

以上所有对我来说都是工作。