与依赖冲突

时间:2018-05-14 14:12:14

标签: android android-studio

刚刚启动了一个新项目并出现错误(构建失败)。 错误信息是:

  

错误:任务执行失败':app:preDebugAndroidTestBuild'        与依赖'com.android.support:support-annotations'冲突       项目':app'。应用程序(26.1.0)和测试应用程序(27.1.1)的已解决版本       不同

的build.gradle:

link for ScreenShot of build.gradle

我使用的是Android 3.0.1版。

1 个答案:

答案 0 :(得分:0)

请尝试这样排除com.android.support:support-annotations

androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
    // add this for intent mocking support
    androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.2'
    androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.0') {
        exclude group: 'com.android.support', module: 'appcompat'
        exclude group: 'com.android.support', module: 'support-v4'
        exclude module: 'recyclerview-v7'
    }