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

Android Studio 3.3:Gradle Build Sync消息为错误失败:Build失败但有异常

梁鸿风
2023-03-14

我昨天更新了android studio并创建了一个新项目,但在gradle sync同步过程中出错。

失败:生成失败,出现异常。

>

  • 其中:构建文件'd:\Android Project\dnm\app\Build.gradle'行:25

    请访问https://help.gradle.org获取更多帮助

    Configure在25秒内失败错误:在org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler类型的对象上找不到参数[junit:junit:4.12]的方法testImplementation()。打开文件

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

    和我的分级属性

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

    和我的分级建筑

    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "com.denemeuygulamasi.dnm"
            minSdkVersion 15
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:28.0.0'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    }
    
  • 共有1个答案

    袁阿苏
    2023-03-14

    今天更新到3.3后,我也遇到了同样的问题

    我卸载和删除分级目录,android目录等,没有工作,但后来我写了

    testImplementation代替testImplementation和AndroidTestImplementation

     类似资料: