如何修复gradle中的'程序类型已存在'

时间:2019-03-26 08:50:38

标签: android-gradle google-auth-library

我正在尝试将“ com.google.android.gms:play-services-auth:15.0.1”添加到我的项目的“依赖项”节点中,并且在运行该项目时出现错误,错误是:错误:程序类型已经存在:com.google.android.gms.internal.auth.zzas

我用Google搜索它,尝试了很多stackoverflow答案,但是没有一个人提供帮助,实际上没有一个人真正在谈论我的特定问题,最后,我无法继续进行我的项目

这里的应用程序摇篮:

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
     implementation 'com.google.android.gms:play-services-auth:15.0.1' // Make the error!
    implementation 'com.google.firebase:firebase-config:15.0.2'
    implementation 'com.google.firebase:firebase-core:15.0.2'
    implementation 'com.google.firebase:firebase-database:15.0.1'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    .... }

顶级摇篮:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
        google()
        maven {
            url 'https://maven.fabric.io/public'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.google.gms:google-services:4.2.0'
        classpath 'io.fabric.tools:gradle:1.25.4'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url 'https://maven.google.com/' }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

我希望编译我的项目并使用“ play-services-auth”库,但我的项目无法编译,谢谢!

1 个答案:

答案 0 :(得分:0)

经过多次尝试,我只需要更新Gradle,然后一切便开始工作。 以前..我无法更新Gradle,因为旧版本的OneSingal,还是要感谢。.