我很快就回到了使用Android Studio。 当我创建一个新项目时,我遇到了这个问题
错误:任务':app:preDebugAndroidTestBuild'执行失败。
与项目':app'中的依赖'com.android.support:support-annotations'冲突。 app(26.1.0)和测试app(27.1.1)的已解决版本有所不同。有关详细信息,请参阅https://d.android.com/r/tools/test-apk-dependency-conflicts.html。
我找到了很多这个问题的解决方案,但没有一个能够解决问题。 Android support library error after updating to 23.3.0
我在我的依赖项中有这些:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support:support-annotations:27.1.1'
}
答案 0 :(得分:0)
您需要为appCompat和support-annotations使用相同版本的支持库。因此,请更改依赖项:
implementation 'com.android.support:appcompat-v7:26.1.0'
androidTestCompile 'com.android.support:support-annotations:27.1.1'
到
implementation 'com.android.support:appcompat-v7:27.1.1'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
然后,尝试排除来自espresso的现有支持注释:
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
答案 1 :(得分:0)
我的 support-annotations 模块版本冲突。 区别在于我尝试减少测试库使用的版本。
name.chunked(7)[0]
这个可重用的变量帮助了我。 另外 test:runner 和 espresso 使用相同版本的注释(在我的情况下为 27.2.1 )