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

错误:无法解析“:app@DebugAndroidTest/CompileClasspath”的依赖项:无法解析JUnit:JUnit:4.12

步致远
2023-03-14

我创建了一个新的android项目,它在build上显示错误

我试了一下已有的答案

  • 无法解析:com.android.support:AppCompat-v7 24.0.1
  • 我尝试使android Studio无效并重新启动

错误:无法解析“:app@DebugAndroidTest/CompileClasspath”得依赖项:无法解析JUnit:JUnit:4.12.

错误:无法解析“:app@ReleaseUnitTest/CompileClasspath”得依赖项:无法解析JUnit:JUnit:4.12.

错误:无法解析“:app@debugunittest/compileClasspath”得依赖项:无法解析JUnit:JUnit:4.12.

错误:无法解析“:app@DebugAndroidTest/CompileClasspath”的依赖关系:无法解析com.google.code.findBugs:JSR305:2.0.1.

我的gradle文件的依赖项部分

 dependencies 
    {
       implementation 'androidx.appcompat:appcompat:1.0.2'
    testImplementation 'junit:junit:4.12'

    }

我不明白这是我的第一个项目。

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

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'

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

allprojects {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }
    }
}

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

我的应用程序分级是

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.0"
    defaultConfig {
        applicationId "com.example.myapplication"
        minSdkVersion 28
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}
android
        {
            configurations.all
                    {
                        resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
                    }
        }

dependencies
        {
    implementation 'androidx.appcompat:appcompat:1.0.2'
    testImplementation 'junit:junit:4.12'


}

共有1个答案

景书
2023-03-14

在build.gradle文件中添加以下存储库,

repositories {
      jcenter()
      maven {
        url 'https://maven.google.com'
    }
}

您忘记将此添加到依赖项中

androidTestCompile 'com.google.code.findbugs:jsr305:3.0.0' 

这个问题是由浓缩咖啡库引起的,如果你不能删除它,请将它添加到你的应用程序中

android
{ 
 configurations.all 
  { 
    resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9' 
  }
}
 类似资料: