错误:无法解析':app @ debugAndroidTest/compileClasspath'的依赖项:无法解析junit:junit:4.12

错误:无法解析':app @ debugAndroidTest/compileClasspath'的依赖项:无法解析junit:junit:4.12

问题描述:

我创建了一个新的android项目,它显示了已构建的错误

I create an new android project It shows errors on built

我尝试了现有的答案

错误

错误:无法解决以下项的依赖性 ':app @ debugAndroidTest/compileClasspath':无法解析 junit:junit:4.12.

Error:Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve junit:junit:4.12.

错误:无法解决以下项的依赖性 ':app @ releaseUnitTest/compileClasspath':无法解析 junit:junit:4.12.

Error:Unable to resolve dependency for ':app@releaseUnitTest/compileClasspath': Could not resolve junit:junit:4.12.

错误:无法解决以下项的依赖性 ':app @ debugUnitTest/compileClasspath':无法解析 junit:junit:4.12.

Error:Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve junit:junit:4.12.

错误:无法解决以下项的依赖性 ':app @ debugAndroidTest/compileClasspath':无法解析 com.google.code.findbugs:jsr305:2.0.1.

Error:Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve com.google.code.findbugs:jsr305:2.0.1.

我的gradle文件的依存关系部分

Dependencies section of my gradle file

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

    }

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

I do not understand it is my first my project.

我的项目gradle是

My Project gradle is

// 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
}

我的应用gradle是

My app gradle is

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'


}

我试图混合使用AppCompat和Jetpack依赖项,但是您不能这样做.

I was trying to mix AppCompat and Jetpack dependencies, and you cannot do that.

我认为我可能没有正确的Jetpack库存储库设置(为什么找不到任何Jetpack库).

I think I might not have the right repository setup for the Jetpack libraries (why it can't find any Jetpack libraries).

请勿使用:实现'androidx.appcompat:appcompat:1.0.2'. (这是Jetpack)-使用此版本的AppCompat(此外-Jetpack与28.x之前的Appcompat版本不一致).最重要的是,摆脱掉所有显示(androidx)的内容.

Don't use: implementation 'androidx.appcompat:appcompat:1.0.2' . (this is Jetpack) -- use AppCompat versions of this (besides - Jetpack is NOT consistent with Appcompat versions earlier then 28.x). Bottom line, get rid of anything that says (androidx).

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