问题:
Error:Execution failed for task ':app:preDebugAndroidTestBuild'.
> Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
studio 3.0 新建项目 默认 build.gradle(project :)
出现以上问题 直接看是看不出来的 在重新编译后就会报出出以上错误
解决方法:
在 dependencies{} 中添加 下面的代码
androidTestCompile('com.android.support:support-annotations:26.1.0') {
force =true
}
如图 重新编译就可以了
网友评论