库 gradle 的重复条目导致应用程序未 运行

duplicate entry of library gradle causing application not run

我搜索了很多但没有找到任何解决我的问题的方法,我试图 运行 我的应用程序在任何设备上,但我得到了这个错误:

它在使用 com.github.bumptech.glide:glide:3.5.2 时抛出错误,但它只使用了一次,它的 类 如何在 运行 这个应用程序之前与相同的依赖关系没有任何问题,但在我 运行 应用程序时突然出现此错误。

app.gradle 文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'

defaultConfig {
    applicationId "info.androidhive.firebase"
    minSdkVersion 19
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

 dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.google.firebase:firebase-auth:10.0.1'
compile 'com.android.support:design:25.1.0'
compile 'com.firebaseui:firebase-ui-database:1.1.1'
compile 'com.firebaseui:firebase-ui-storage:1.1.1'
compile 'com.google.firebase:firebase-database:10.0.1'
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.crystal:crystalrangeseekbar:1.1.1'
testCompile 'junit:junit:4.12'
}

 apply plugin: 'com.google.gms.google-services'

尝试输入这一行:

enforceUniquePackageName false

在您的 gradle

中的 buildtoolVersion 之后

浏览到项目的 "libs" 目录并删除冗余的 "glide.x.x",因为冗余导致错误。