当前位置: 代码迷 >> 综合 >> Android studio ERROR: Failed to resolve: com.android.support.test.espresso:espresso-core:2.2.2
  详细解决方案

Android studio ERROR: Failed to resolve: com.android.support.test.espresso:espresso-core:2.2.2

热度:78   发布时间:2024-02-06 17:23:48.0

ERROR: Failed to resolve: com.android.support.test.espresso:espresso-core:2.2.2

ERROR: Failed to resolve: com.android.support:appcompat-v7:25.3.1

Android studio跑别人的项目,经常会出现这种不匹配的情况。
解决方法:
1.

在这里插入图片描述
2.添加

maven {url "https://maven.google.com"
}

 

结果:

复制代码

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

复制代码

 

 

在这里插入图片描述

如果还有问题,看这篇文章
https://stackoverflow.com/questions/45097825/failed-to-resolve-com-android-support-test-espress

 

  相关解决方案