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

无法接收配置的所有依赖项“:应用:\u debugUnitTestApkCopy”

端木飞
2023-03-14

当我尝试在android studio中运行应用程序时,出现以下错误。

错误:配置项目“: app”时出现问题。

无法解析配置的所有依赖项“:app:\u debugUnitTestApkCopy”。无法解析junit:junit:4.12。MyFirstAppp所需的:app:unspecified无法解析junit:junit:4.12。无法获取资源'https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.pom'. 无法获取'https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.pom'. 连接到jcenter。纸盒。com:443[jcenter.bintray.com/75.126.118.188]失败:连接超时:连接

共有2个答案

龙骏
2023-03-14

感谢拉莫斯的回复。我找到了这个错误的另一个解决方案。以下是解决错误的步骤。

      1. download junit-4.12.jar from https://mvnrepository.com/artifact/junit/junit/4.12
      2. Then put junit-4.12.jar into your <project>/app/libs/ directory
      3. Right click on your project and then select "Open Module Settings". Then go to tab "Dependencies"
      4. From "Dependencies" tab, select and delete junit-4.12.jar
      5. Then add junit-4.12.jar from your <project>/app/libs directory
      6. Then rerun your project.

谢谢

景阳曜
2023-03-14

可能您有代理限制或连接问题,无法让gradle连接和编译JUnity。

您可以在生成时从依赖项中删除此行。gradle(模块:应用程序)

testCompile 'junit:junit:4.12'
 类似资料: