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

Android Studio 3.0 Canary 5中的Gradle同步失败

房学
2023-03-14

这是我的构建。gradle(项目:MyProjectName)文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    ext.kotlin_version = "1.1.1"
    ext.supportLibVersion = "25.3.0"

    repositories {
        jcenter()
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"

        classpath 'com.android.tools.build:gradle:3.0.0-alpha5'

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

allprojects {
    String osName = System.getProperty("os.name").toLowerCase();

    if (osName.contains("windows")) {
        buildDir = "C:/tmp/${rootProject.name}/${project.name}"
    }

    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

下面是构建。gradle(模块:应用程序):

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"

    defaultConfig {
        applicationId "com.example.android.datafrominternet"
        minSdkVersion 10
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:25.1.0'

    // TODO (32) Remove the ConstraintLayout dependency as we aren't using it for these simple projects
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7: $kotlin_version"
}

这是错误消息:

Error:Unable to find method 'com.android.build.gradle.internal.variant.BaseVariantData.getOutputs()Ljava/util/List;'.

此意外错误的可能原因包括:

  • Gradle的依赖项缓存可能已损坏(这有时会在网络连接超时后发生。)重新下载依赖项和同步项目(需要网络)
  • Gradle构建进程(守护进程)的状态可能已损坏。停止所有Gradle守护进程可以解决此问题。停止Gradle生成过程(需要重新启动)
  • 您的项目可能使用的第三方插件与项目中的其他插件或项目要求的Gradle版本不兼容

共有2个答案

羊舌成周
2023-03-14

在项目build.gradle文件中,更改为:

ext.kotlin_version = '1.1.2-4'
农英杰
2023-03-14

将android Studio更新为beta-v5后也有同样的问题。检查您的应用程序/gradle。也许你有块-

buildscript {
repositories {
    mavenCentral()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.0-beta5'
}

然后检查ur应用程序/gradle和project gradle中gradle插件的版本。或者尝试将此块添加到应用程序/渐变的顶部。

 类似资料:
  • 由:org.gradle.api.internal.artifacts.ivyService.DefaultLenientConfiguration$ArtifactResolveException引起:无法解析配置“:classpath”的所有工件。 原因:org.gradle.internal.resolve.ModuleVersionResolveException:无法解析com.andr

  • 当我今天早上启动我的项目时,它随机给我一条消息,说Gradle项目同步失败。基本功能(如编辑、调试)将无法正常工作。Android Studio中的代码。我看了人们为这个问题提出的其他答案,但他们一直没有工作。我取消了我的chach/重启了我的项目,但是没有运气。我也从我的项目文件夹中删除了我的. gradle文件夹,但是仍然没有运气。如果你们中的任何人能帮我,那就太棒了!这不是昨天我在做项目的时

  • 我通过导入build.gradle在Android Studio中打开我的项目,该项目以前工作正常,但现在我收到一个错误,说gradle项目同步失败。我尝试了一个构建,它说任务“”在根项目“项目名称”中找不到。 这就是日志文件中显示的内容。 2015-01-20 11:50:03,315[58495]WARN-radle.project.ProjectSetUpTask- 2015-01-20 1

  • 每当我在Android Studio中创建一个新项目时,它都会在Gradle Sync上失败,并且总是出现相同的错误: 有什么方法可以解决这个无聊的失败?(我已经在和搜索了一千次)

  • 因此,我对Android Studio非常陌生,只是第一次尝试设置。即使我尝试了所有的方法,提到的分级同步失败,不幸的是,没有任何工作。请帮助找到问题所在。 类路径: buildscript{repositories{jcenter()}dependencies{classpath“com.android.tools.build:gradle:2.3.2” distributionbase=gra

  • 我使用react native V0.61.5、Android studio 3.6.3和macOS Catalina 10.15.4。andrid studion更新后,在android studio中有问题: 线程“main”java.lang.runtimeException:base:GRADLE_USER_HOME中的异常在org.gradle.wrapper.pathAssembler