建立签名APK时:app:transformClassesWithJarMergingForRelease

时间:2017-08-03 19:34:13

标签: java android

遇到问题:**失败:构建因异常而失败。

  • 出了什么问题: 任务':app:transformClassesWithJarMergingForRelease'执行失败。
      

    com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / gson / annotations / Expose.class   **

这是当我尝试使用发布签名APK构建时。但是,当我在Gradle中进行调试或同步时,它可以正常工作。

我认为对支持版本进行版本控制或者编译具有问题的依赖项存在问题。我只是不确定追踪问题的正确途径是什么。

我尝试清理然后重建。 Debug Build没有问题,但在签名APK上我遇到了这个问题。

    dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    // Single target that includes all FirebaseUI libraries above
    compile files('libs/YouTubeAndroidPlayerApi.jar')
    compile files('libs/plivo-java-3.0.9-jar-with-dependencies.jar')
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.google.firebase:firebase-core:10.0.1'
    compile 'com.google.firebase:firebase-database:10.0.1'
    compile 'com.google.firebase:firebase-storage:10.0.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
    compile 'com.android.support:support-v4:23.4.0'
    compile 'com.android.support:support-vector-drawable:23.4.0'
    compile 'com.google.firebase:firebase-messaging:10.0.1'
    compile 'com.firebaseui:firebase-ui:1.0.1'
    compile 'com.android.support:recyclerview-v7:23.4.0'
    testCompile 'junit:junit:4.12'
    compile project(':DailymotionWebSDK')
}

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

1 个答案:

答案 0 :(得分:0)

这是因为以下两个库都包含了gson依赖项:

compile files('libs/plivo-java-3.0.9-jar-with-dependencies.jar')
compile project(':DailymotionWebSDK')

对于plivo-java sdk,请查看其pom.xml

对于DailyMotionWebSDK,请查看其build.gradle

所以,你需要从其中一个中排除gson。