Gradle sync failed: Unsupported method: SyncIssue.getMultiLineMessage().(安卓工作室)

我正在尝试在需要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)

我的行中应该包含哪些标有***的版本/数字。

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'
}

答案 1

当我尝试为我正在学习的课程导入文件时,一直收到此错误。经过几天的挖掘和运气的一点,了解了gradle版本和Android Gradle Plug in版本。这些数字不一样,但它们必须与此链接中的表相对应: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
}

和在平底包包装器.属性文件中更改

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

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

如果您查看链接中的表格,您将看到此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

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

希望这对您有所帮助。


答案 2

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

改变

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

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

推荐