Conflict with dependency 'com.android.support:support-annotations' in project '

事故图

解决方案

1.直接rebuild就不报错了

2.在gradle添加

androidTestCompile 'com.android.support:support-annotations:26.1.0'

我挂掉了,可能是AS3.0后的依赖出错,换下试试

androidTestImplementation 'com.android.support:support-annotations:26.1.0'

bingo!!!

3.也是在gradle添加

configurations.all {
      resolutionStrategy.force 'com.android.support:support-annotations:26.1.0'
  }

能解决问题的。

二者的比较

第一种是将依赖冲突改成一致,第二种是强制用26.1.0的配置

问题原因

依赖包和测试包冲突了

Conflict with dependency 'com.android.support:support-annotations' in project '_第1张图片

Conflict with dependency 'com.android.support:support-annotations' in project '_第2张图片

写在最后

下次新建项目还是会第一时间出现这个问题,并没有根本解决,求教

你可能感兴趣的:(AS使用过程中的坑坑洼洼)