使用AndroidX测试JUnit时无法解决:org.junit:junit:4.12

时间:2018-10-09 10:35:55

标签: android junit android-testing androidx android-junit

当我尝试添加对AndroidX Test JUnit 1.0.0-beta01的依赖性:androidTestImplementation androidx.test.ext:junit:1.0.0-beta01时,Gradle Sync失败,并出现以下错误:

  

无法解析:org.junit:junit:4.12

所有手动添加org.junit依赖项的操作也无济于事。

2 个答案:

答案 0 :(得分:2)

您可以手动排除“ org.junit”组。

androidTestImplementation("androidx.test.ext:junit:1.0.0-beta01") {
    exclude group: "org.junit"
}

答案 1 :(得分:2)

上述问题已在 1.0.0-beta02

中修复

'androidTestImplementation“ androidx.test.ext:junit:1.0.0-beta02'