新建项目时 gradle build 报错

来源:-

慕前端5085637

2018-06-29 09:53

* What went wrong:

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.



按照报错提示,百度后试了各种办法,还是有这个错误,请问老师如何解决呢

写回答 关注

1回答

  • 雷利1
    2018-07-09 14:15:26

    在build.gradle 里面的android{}加入

    configurations.all {
        resolutionStrategy {
            force 'com.android.support:support-annotations:26.1.0'
        }
    }
    然后加入 dependencies {
        implementation 'com.android.support:appcompat-v7:26.1.0'
    }


Android UiAutomator 2.0 入门实战

零基础学习UiAutomator 2.0自动化测试,学会编写 Android 自动化测试用例

14767 学习 · 71 问题

查看课程

相似问题