我在为一个Android项目添加espresso时遇到了这个异常。我已经尝试了此异常附带的链接
**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'
任何想法,谢谢。
答案 0 :(得分:39)
这解决了问题'应用程序(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"
}
答案 1 :(得分:15)
dependencies {
//...
// Solves "versions for app (23.3.0) and test app (23.1.1) differ"
androidTestCompile 'com.android.support:support-annotations:23.3.0'
// Android JUnit Runner
androidTestCompile 'com.android.support.test:runner:0.5'
// JUnit4 Rules
androidTestCompile 'com.android.support.test:rules:0.5'
}
答案 2 :(得分:8)
现在,当您在Android Studio上创建新项目时,默认情况下会添加此依赖项:
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
exclude
部分可能是为了避免问题中提到的冲突。尝试添加runner:0.5
和rules:0.5
依赖项时,我也遇到了此问题。我的解决方案是在上面应用相同的代码:
androidTestCompile ('com.android.support.test:runner:0.5', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestCompile ('com.android.support.test:rules:0.5', {
exclude group: 'com.android.support', module: 'support-annotations'
})
它对我有用。希望它有所帮助。
答案 3 :(得分:4)
注释库由所有三个依赖规则使用:0.5',runner:05和espresso-core:2.2.2,所以以下为我工作
androidTestCompile 'com.android.support.test:runner:0.5', {
exclude group: 'com.android.support', module: 'support-annotations'
}
androidTestCompile 'com.android.support.test:rules:0.5', {
exclude group: 'com.android.support', module: 'support-annotations'
}
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
}
答案 4 :(得分:1)
重建项目解决了该问题。
在Android Studio工具栏中。.Build>重建项目。
答案 5 :(得分:0)
for
这是一个解决方案