使用android studio 3.0.1创建新项目时出错

时间:2018-04-29 11:22:29

标签: android

错误:任务':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

编辑:以下内容来自评论

以下是我的依赖项:

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:3.0.2' 
    androidTestImplementation 'com.android.support:support-annotations:27.1.1' 
}

2 个答案:

答案 0 :(得分:1)

基于documentation

  

您的应用APK及其测试APK都共享相同的类路径。因此,如果两个APK都依赖于同一个库的不同版本,则会出现构建错误。

所以解决方法是改变你的

com.android.support:appcompat-v7:26.1.0

com.android.support:appcompat-v7:27.1.1

答案 1 :(得分:1)

您也可以尝试这一点。

    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

代替这个

androidTestCompile 'com.android.support.test:runner:0.4.1'
androidTestCompile 'com.android.support.test:rules:0.4.1'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.2.1'