首页 > 解决方案 > 程序类型已经存在 com.google.gson.FieldAttributes

问题描述

我的 android 应用程序拒绝构建并出现以下错误:

Program type already present: com.google.gson.FieldAttributes
Message{kind=ERROR, text=Program type already present: com.google.gson.FieldAttributes, sources=[Unknown source file], tool name=Optional.of(D8)}

我的 build.gradle 依赖项

 dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'com.android.support:animated-vector-drawable:27.1.1'
    implementation 'com.android.support:customtabs:27.1.1'
    implementation 'com.android.support:support-media-compat:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    api 'com.github.Steveice10:MCProtocolLib:1.12.2-2'
    api 'com.github.Steveice10:OpenNBT:1.0'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.google.android.gms:play-services-ads:15.0.1'
    implementation 'com.google.android.ads.consent:consent-library:1.0.6'
    implementation 'com.github.GrenderG:Prefs:1.3' //Propably this cause problem
    implementation('com.crashlytics.sdk.android:answers:1.4.2@aar') {
        transitive = true
    }
    implementation('com.crashlytics.sdk.android:crashlytics:2.9.4@aar') {
        transitive = true
    }}

当我添加 com.github.GrenderG:Prefs 依赖项时,它可能开始发生

标签: javaandroidgradle

解决方案


将此行添加到 build.gradle 文件中。

configurations {
            all*.exclude group: 'com.google.code.gson'
        }

推荐阅读