Gradle:与依赖项冲突

时间:2019-12-24 21:33:17

标签: android gradle build dependencies

我正在学习有关Android开发的在线课程,但是由于我在Gradle上遇到了一个依赖问题,使我无法成功构建示例项目,因此我一开始就被困住了。 错误是著名的:

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.

我的摇篮在下面:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

根据讲师的建议,我正在使用AS 3.0.1。但是,讲师无法为我解决这个问题,由于我是AS的新手,所以我不知道如何进行。

任何帮助将不胜感激!

非常感谢, 阿尔贝托

0 个答案:

没有答案