Dependency Error.See console for detail 解决

当运行项目出现> Dependency Error.See console for detail

Dependency Error.See console for detail 解决_第1张图片

先不要忙着查百度(虽然这时候已经查了),因为可能性很多,我们可以先打开as右下角的Gradle Console,选择下图框好的--debug option,会编译gradle

Dependency Error.See console for detail 解决_第2张图片

然后左边Messages里面会出现错误原因,例如我项目中出现的是. Resolved versions for app (3.0.1) and test app (2.0.1) differ.出现这个错的原因是由于添加的依赖版本是最新的,而代码仓库里边并没有最新的依赖导致报错

Dependency Error.See console for detail 解决_第3张图片

解决方法:在gradle中添加如下代码,其中3.0.1是看错误里面的版本而定

 configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
    }

同步一下,再次Run项目即可成功运行。

你可能感兴趣的:(android)