Gradle 同步失败:不支持的方法:SyncIssue.getMultiLineMessage()。 (Android 工作室)

Gradle sync failed: Unsupported method: SyncIssue.getMultiLineMessage(). (Android Studio)

我正在尝试在需要 Gradle 1.10 的最新版本 Android Studio 上构建这个旧应用程序。我一直收到同步错误(见下文)。

SYNC ERROR:
Gradle sync failed: Unsupported method: SyncIssue.getMultiLineMessage().
The version of Gradle you connect to does not support that method.
To resolve the problem you can change/upgrade the target version of Gradle you connect to.
Alternatively, you can ignore this exception and read other information from the model.
Consult IDE log for more details (Help | Show Log) (8 s 599 ms)

我在标有 *** 的行中应该 versions/numbers 什么。

buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
 ****       classpath 'com.android.tools.build:gradle:1.5.0'
    }
}
apply plugin: 'android'

repositories {
    mavenLocal()
    mavenCentral()
}
android {
***   compileSdkVersion 19
***   buildToolsVersion "19.1"

    defaultConfig {
 ***       minSdkVersion 10
 ***       targetSdkVersion 19
    }

    lintOptions {
        abortOnError false
    }
}
    
dependencies {
***   compile 'com.android.support:appcompat-v7:19.1.0'
***   compile 'com.bitalino:bitalino-java-sdk:1.0'
***   compile 'org.roboguice:roboguice:3.0b-experimental'
***   compile 'com.squareup.retrofit:retrofit:1.5.0'
}

尝试将 Android Gradle 插件更新到最新可用版本:

改变

classpath 'com.android.tools.build:gradle:1.5.0'

classpath 'com.android.tools.build:gradle:2.3.2'

当我尝试为我正在拍摄的 class 导入文件时,一直出现此错误。经过几天的挖掘和一点运气,了解了 gradle 版本和 Android Gradle 插件版本。数字不一样,但它们必须按照 link 中的 table 对应: https://developer.android.com/studio/releases/gradle-plugin 在我得到它之后,我必须进入 build.gradle 文件并更改它到这个。我的更改已注释

    // Top-level build file where you can add configuration options common to all sub- 
projects/modules.

buildscript {
    repositories {
        google()//Add this
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.0'//change to this

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()//add this
        jcenter()
    }
}

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

并在 griddle-wrappers.properties 文件中更改

distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip

distributionUrl=https://services.gradle.org/distributions/gradle-6.5-all.zip

如果您查看 link 中的 table,您会看到此 build.gradle 文件行中的 4.1.0

classpath 'com.android.tools.build:gradle:4.1.0'

匹配 gradle-wrapper.properties 行中的 6.5-all

distributionUrl=https://services.gradle.org/distributions/gradle-6.5-all.zip

我没试过,但我想只要图表上的数字相互对应,即使不完全是这些数字,它也会起作用。

希望对您有所帮助。

确实是 - 但是 IDE 似乎不知道最新版本。当我遇到此类错误时,我会使用最新版本,但 IDE 会创建一条无用的错误消息。我们知道房子着火了,我想知道如何扑灭它...