在android studio中将依赖项添加到my build.gradle时出错(与依赖项冲突)

在android studio中将依赖项添加到my build.gradle时出错(与依赖项冲突),android,android-studio,dependencies,build.gradle,google-sheets-api,Android,Android Studio,Dependencies,Build.gradle,Google Sheets Api,我是android studio的新手,正在尝试添加Google sheets api v4。它说向build.gradle文件添加一些依赖项。 以下是我的gradle目前的样子: apply plugin: 'com.android.application' android { compileSdkVersion 26 buildToolsVersion "26.0.1" defaultConfig { applicationId "com.examp

我是android studio的新手,正在尝试添加Google sheets api v4。它说向build.gradle文件添加一些依赖项。 以下是我的gradle目前的样子:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "com.example"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    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'
    })
    compile 'com.google.android.gms:play-services-location:11.0.4'
    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.android.gms:play-services-maps:11.0.4'
    compile 'com.android.support:design:26.+'

    testCompile 'junit:junit:4.12'
}
尝试添加以下行时出错

compile('com.google.api-client:google-api-client-android:1.22.0') {
    exclude group: 'org.apache.httpcomponents'
}
compile('com.google.apis:google-api-services-sheets:v4-rev483-1.22.0') {
    exclude group: 'org.apache.httpcomponents'
}
当我尝试同步我的Gradle时,会出现以下错误:

Error:Conflict with dependency 'com.google.code.findbugs:jsr305' in project ':app'. Resolved versions for app (1.3.9) and test app (2.0.1) differ. See http://g.co/androidstudio/app-test-app-conflict for details.

如果您能帮我解决这个问题,我将不胜感激,因为我是android studio的新手。

在您的
build.gradle
(在应用程序文件夹中)在
android{}
正文中添加以下内容

android {

   ....

    configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
    }
}
相关答案:

可能重复的