当将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
Run Code Online (Sandbox Code Playgroud)
根据此错误,我已经更新了Kotlin版本 1.2.17 to 1.3.0
但它显示以下错误:
Could not find org.jetbrains.kotlin:kotlin-stdlib-jre8:1.3.0.
Run Code Online (Sandbox Code Playgroud)
还尝试最新的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
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2591 次 |
| 最近记录: |