Gradle 同步失败:不支持的方法:SyncIssue.getMultiLineMessage().(安卓工作室) [英] Gradle sync failed: Unsupported method: SyncIssue.getMultiLineMessage(). (Android Studio)

查看:65
本文介绍了Gradle 同步失败:不支持的方法:SyncIssue.getMultiLineMessage().(安卓工作室)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在需要 Gradle 1.10 的最新版 Android Studio 上构建这个旧应用.我不断收到同步错误(见下文).

I'm trying to build this old app on the newest version of Android Studio that requires Gradle 1.10. I keep getting sync errors (See below).

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)

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

What versions/numbers should I have in my lines that are marked with ***.

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

推荐答案

当我尝试为我正在上课的课程导入文件时,一直出现此错误.几天的挖掘和一点运气之后,了解了gradle版本和Android Gradle Plug in版本.这些数字不一样,但它们必须与此链接中的表格一致:https://developer.android.com/studio/releases/gradle-plugin 在我得到它之后,我不得不进入 build.gradle 文件并将其更改为这个.我的更改已注释

Kept getting this error when I tried to import a file for a class I'm taking. Several days of digging and a little luck later, learned about gradle versions and Android Gradle Plug in versions. The numbers are not the same but they must correspond as per the table in this link: https://developer.android.com/studio/releases/gradle-plugin After I got that then I had to go into the build.gradle file and change it to this. My changes are annotated

    // 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 文件中更改

and in the griddle-wrappers.properties file change

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

If you look at the table in the link you will see that the 4.1.0 in this build.gradle file line

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

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

matches the 6.5-all in this gradle-wrapper.properties line

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

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

I didn't try it but I would imagine that as long as the numbers correspond to each other on the chart then it would work even if it weren't exactly these numbers.

希望对你有所帮助.

这篇关于Gradle 同步失败:不支持的方法:SyncIssue.getMultiLineMessage().(安卓工作室)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆