任务执行失败':app:prepareDebugAndroidTestDependencies'依赖错误

时间:2016-10-17 08:05:42

标签: android build.gradle

我收到消息:任务'app:prepareDebugAndroidTestDependencies'的执行失败,我无法找到它的内容。

我也尝试了这个答案的解决方案https://stackoverflow.com/a/40019612/3925663

错误日志:

  

警告:与依赖项“com.android.support:support-annotations”冲突。 app(24.2.1)和测试app(23.1.1)的已解决版本不同。有关详细信息,请参阅http://g.co/androidstudio/app-test-app-conflict

     

错误:任务执行失败   ':应用程序:prepareDebugAndroidTestDependencies'。    依赖性错误。有关详细信息,请参阅控制台。

的build.gradle:

apply plugin: 'com.android.application'

android {
    configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
    }
    compileSdkVersion 24
    buildToolsVersion "24.0.3"
    defaultConfig {
        applicationId "com.appspot.whatshouldiwearapp.wsiw"
        minSdkVersion 9
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        useLibrary  'org.apache.http.legacy'

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    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.5'
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support:support-v4:24.2.1'
    testCompile 'junit:junit:4.12'

}

问题的解决方案是什么以及导致这个问题的原因是什么?

1 个答案:

答案 0 :(得分:9)

我通过这个答案解决了错误: https://stackoverflow.com/a/37717407/3925663

由以下原因引起:

测试应用程序版本与图书馆主应用程序之间存在冲突:' com.android.support:support-annotations'

<强> soultion:

我改变了这个

configurations.all {
  resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
}

到此:

configurations.all {
  resolutionStrategy {
    force 'com.android.support:support-annotations:24.2.1'
  }
}

这解决了我的问题。