Android Studio无法解析jUnit 4.12依赖关系

时间:2018-02-13 14:22:48

标签: java android maven gradle junit

我遇到的问题在这个平台上似乎很受欢迎, 但似乎没有答案对我有用。我面临着类似的问题:

Error:(23, 17) Failed to resolve: junit:junit:4.12

但43个答案中没有一个适用于我的问题。 (我希望这不会被标记为重复)

我已尝试手动将org.junit包导入测试类,但无法解决。我认为原因是Gradle无法加载JUnit库,但我不知道如何更改它。

即使创建了一个新的android studio项目,我也无法设置JUnit。甚至不能运行示例测试:

package de.ckc.azubis.fleetparkmanagement;

import static junit.framework.Assert.assertEquals;

/**
 * Example local unit test, which will execute on the development machine 
(host).
 *
 * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
 */
public class ExampleUnitTest {

    @Test
    public void addition_isCorrect() throws Exception {
        assertEquals(4, 2 + 2);
    }
}

当我尝试导入Test注释时,JUnit依赖项会添加到gradle文件中,但不会导入到测试类中。

这里是我的模块级build.gradle:

申请插件:&#39; com.android.application&#39;

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "de.ckc.azubis.fleetparkmanagement"
        minSdkVersion 21
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.0.2'
    implementation 'com.android.support:design:27.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    implementation 'com.android.support:cardview-v7:27.0.2'
}

和我的项目级build.gradle

//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {

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


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

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

我已经尝试了我能想到的一切,包括重新配置依赖项,手动添加我能想到的每个存储库(mavenCentral,jcenter ......),检查我的代理设置等等。

1 个答案:

答案 0 :(得分:0)

缓存存在问题。 我通过点击file -> Invalidate Caches修复了它,然后重新启动