与依赖关系“com.android.support:support-annotations”冲突 应用程序(23.3.0)和测试应用程序(23.1.1)的解决版本不同

前端之家收集整理的这篇文章主要介绍了与依赖关系“com.android.support:support-annotations”冲突 应用程序(23.3.0)和测试应用程序(23.1.1)的解决版本不同前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在加入espresso到Android项目时,我遇到了这个例外。我已经尝试了这个异常附带的链接
**Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (23.3.0) and test app (23.1.1) differ**

我还根据我发现的其他线程添加了以下行

**androidTestCompile 'com.android.support:support-annotations:23.1.0'**

但问题仍然存在。我正在使用以下配置:

buildToolsVersion "23.0.2"

androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'

任何想法,谢谢。

解决了问题“解决的版本的应用程序(24.0.0-beta1)和测试应用程序(23.0.1)不同’为我。
android{    
    configurations.all {
        resolutionStrategy.force 'com.android.support:support-annotations:23.0.1'
    }
}

不要忘了添加以下代码,如果要运行AndroidTest

defaultConfig {
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
原文链接:https://www.f2er.com/javaschema/282112.html

猜你在找的设计模式相关文章