android studio新建项目时出现Error:Execution failed for task ':app:preDebugAndroidTestBuild'.

时间:2021-11-27 23:33:53

android studio更新后创建新项目时出现以下错误

android studio新建项目时出现Error:Execution failed for task ':app:preDebugAndroidTestBuild'.

可以用Build->Rebuild Project解决,但这个方法只是临时的,重新打开项目还是会报错

所以用另一种方法:

在app下的build.gradle文件中的dependences {}中添加如下代码:

androidTestCompile('com.android.support:support-annotations:26.1.0') {
force = true
}
添加后截图:

android studio新建项目时出现Error:Execution failed for task ':app:preDebugAndroidTestBuild'.

参考自https://blog.csdn.net/fighting_2017/article/details/80244982