当前位置: 首页 > 知识库问答 >
问题:

分级同步失败:找不到方法

佘修为
2023-03-14

我尝试在Android Studio中导入一个项目。导入时,Gradle出现了一个错误:

Gradle sync failed: Unable to find method 

'org.gradle.api.artifacts.Configuration.setExtendsFrom(Ljava/lang/Iterable;)Lorg/gradle/api/artifacts/Configuration;'.

我试过:

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

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'

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

allprojects {
    repositories {
        jcenter()
    }
}
apply plugin: 'com.android.application'
//apply plugin: 'android'

android {
    compileSdkVersion 17
    buildToolsVersion '20.0.0'
    defaultConfig {
        applicationId 'xxx.xxx.xxx'
        minSdkVersion 17
        targetSdkVersion 17
        versionCode 1
        versionName '1.0'
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        buildPB {
            debuggable false
            jniDebuggable false
            renderscriptDebuggable false

            zipAlignEnabled true
        }
    }
    productFlavors {
    }
//    lintOptions {
//        abortOnError false
//    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    // You must install or update the Support Repository through the SDK manager to use this dependency.
    compile ('org.simpleframework:simple-xml:2.7.1') {
        exclude module: 'stax'
        exclude module: 'stax-api'
        exclude module: 'xpp3'
    }
    compile 'net.sf.opencsv:opencsv:2.3'
    compile 'de.greenrobot:greendao:1.3.7'
    // You must install or update the Support Repository through the SDK manager to use this dependency.
//    compile 'com.android.support:support-v4:19.+'
}

共有1个答案

潘向明
2023-03-14

我通过更改以下内容修复了这个错误。

>

  • 打开your-app-project\your-app-name\gradle\wrapper\gradle-wrapper.properties
  • 下的文件
  • 用以下路径替换旧的URL路径:distributionURL=https://services.gradle.org/distributions/gradle-2.10-all.zip

    将文件夹名从“...\1.12”重命名为your-app-project\your-app-name.gradle\2.10

    我使用的是Android Studio和Gradle的最新版本。

  •  类似资料:
    • 我从GitHub下面的链接下载了basicSample项目。当我想同步项目,我得到以下错误。我搜索了一下,我看到了这个链接(如何在android studio中将梯度更新到3.4.1),我尝试了脱机模式,但又不起作用。我当时很困惑。我不能在线同步gradle 3.4.0吗?是否应该使用脱机同步?如果是,我如何设置gradle和gradle插件(我在设置中设置了gradle的路径,但Android

    • 无法同步分级。 错误:找不到com.android.tools.build:gradle:1.0.0。在以下位置搜索:文件:/e:/installed/androidsdk/gradle/m2repository/com/android/tools/build/gradle/1.0.0/gradle-1.0.0.pom文件:/e:/installed/androidsdk/gradle/m2rep

    • 到今天为止,我在Android Studio中设置新项目时遇到了一个错误。在创建一个空白项目之后,日志提到“Gradle sync failed:failed Tools revision 24.0.0 RC1”。 首先,我在网上查看如何解决这个问题,遇到了类似的问题,并遵循了给出的解决方案(在模块设置中设置构建工具版本)。然而,这导致Android Studio告诉我找不到方法“Android(

    • 问题内容: 我尝试在Android Studio中导入项目。导入时,我在Gradle中遇到了一个错误: 我努力了 : 重新下载依赖项并同步项目:失败(相同错误)。 停止Gradle构建过程:失败(相同错误)。 删除主目录中的.graddle:失败(相同错误)。 使缓存无效并重新启动失败(相同的错误)。 卸载并重新安装Android Studio和SDK:失败(相同错误)。 /build.gradl

    • Kotlin:1.3.41 Groovy:2.5.4 Ant:Apache Ant(TM)版本1.9.14编译于2019年3月12日JVM:1.8.0_60(Oracle Corporation 25.60-B23)OS:Windows 10 10.0 amd64 C:\users\Michael> 由于以下原因,无法发布整个日志:您需要至少10个信誉才能发布超过8个链接。