gpt4 book ai didi

java - Gradle 同步失败 : Unsupported method: SyncIssue. getMultiLineMessage()。 (安卓工作室)

转载 作者:行者123 更新时间:2023-12-03 03:44:16 25 4
gpt4 key购买 nike

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

最佳答案

当我尝试为我正在类的类(class)导入文件时,不断收到此错误。挖了几天,有点运气,后来了解了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
}
并在 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
如果您查看链接中的表格,您将看到此 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
我没有尝试过,但我想只要图表上的数字相互对应,即使不完全是这些数字,它也会起作用。
希望这可以帮助你。

关于java - Gradle 同步失败 : Unsupported method: SyncIssue. getMultiLineMessage()。 (安卓工作室),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64409047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com