CommandError:您的项目buildScript或buildSrc类路径上似乎有guava-jdk5

时间:2017-11-13 10:27:30

标签: java android

您好我更新了我的IDE" Android Studio 3.0"和Build.gradle,但我在 Build Build.gradle(模块APP)

中遇到问题 更新后的

Build.gradle(模块APP)就像这样

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion '25.0.0'
    defaultConfig {
        applicationId "com.abdeljalilkchih.learnarabicforkids"
        minSdkVersion 12
        versionName "\n" +
                "        targetSdkVersion 26\n" +
                "        versionCode 1515.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.android.support:appcompat-v7:26.1.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta1'
    compile 'com.google.firebase:firebase-core:10.0.1'
    compile 'com.google.firebase:firebase-auth:10.0.1'
    compile 'com.google.firebase:firebase-ads:10.0.1'
    compile 'com.akexorcist:RoundCornerProgressBar:2.0.3'
    testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

消息Gradle sync

    Error:(1, 0) You appear to have guava-jdk5 on your project buildScript or buildSrc classpath.
This is likely a transitive dependency of another gradle plugin.Run the buildEnvironment task to find out more.
See https://issuetracker.google.com/38419426#comment8 for a workaround.

1 个答案:

答案 0 :(得分:15)

您好应该更新应用程序级别gradle文件。通过这样做,问题将会到来。

classpath ('com.google.firebase:firebase-plugins:1.0.5') {
   exclude group: 'com.google.guava', module: 'guava-jdk5' 
}