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

12b*_*o23 17 java android gradle android-studio android-gradle-plugin

我正在尝试在需要 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)
Run Code Online (Sandbox Code Playgroud)

我的行中标有 *** 的版本/编号应该是什么。

buildscript {
    repositories {
        mavenCentral()
    }

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

repositories {
    mavenLocal()
    mavenCentral()
}
Run Code Online (Sandbox Code Playgroud)
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'
}
Run Code Online (Sandbox Code Playgroud)

小智 29

当我尝试为我正在上课的课程导入文件时,一直收到此错误。几天的挖掘和一点运气之后,了解了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
}
Run Code Online (Sandbox Code Playgroud)

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

distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip
Run Code Online (Sandbox Code Playgroud)

distributionUrl=https://services.gradle.org/distributions/gradle-6.5-all.zip
Run Code Online (Sandbox Code Playgroud)

如果您查看链接中的表格,您将看到此 build.gradle 文件行中的 4.1.0

classpath 'com.android.tools.build:gradle:4.1.0'
Run Code Online (Sandbox Code Playgroud)

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

distributionUrl=https://services.gradle.org/distributions/gradle-6.5-all.zip
Run Code Online (Sandbox Code Playgroud)

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

希望这可以帮助你。