ZipException:重复的条目异常

时间:2017-09-26 20:02:46

标签: java android firebase gradle firebaseui

我正在使用Firebase和API.AI制作Android聊天机器人应用程序。 在将firebase UI lib添加到项目后,我得到 java.util.zip.ZipException:重复条目运行时异常。之后,我添加了javaMaxHeapSize =“4g”,但找不到解决方法。使用不同的FirebaseUI版本,但没有一个工作。

还有其他类似的问题,但每个问题都是通用的,具有不同的build.grade。

这是消息:

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/android/gms/auth/api/signin/internal/zzf.class

Gradle文件:

apply plugin: 'com.android.application'

android {
  compileSdkVersion 25
  buildToolsVersion "25.0.2"
  defaultConfig {
    applicationId "com.bot.chatbot.chatbot"
    minSdkVersion 16
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled = true
  }
  dexOptions {
    javaMaxHeapSize = "4g"
  }
  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'
  })

  //Google
  compile 'com.android.support:appcompat-v7:25.3.1'
  compile 'com.android.support:recyclerview-v7:25.3.1'
  compile 'com.android.support:design:25.3.1'
  compile 'com.android.support.constraint:constraint-layout:1.0.2'

  //AI
  compile 'ai.api:sdk:2.0.7@aar'
  compile 'ai.api:libai:1.4.8'
  compile 'com.google.code.gson:gson:2.3.1'
  compile 'commons-io:commons-io:2.4'

  //Firebase
  compile 'com.google.firebase:firebase-core:10.2.1'
  compile 'com.google.firebase:firebase-storage:10.2.1'
  compile 'com.google.firebase:firebase-auth:10.2.1'
  compile 'com.google.firebase:firebase-database:10.2.1'
  compile 'com.firebaseui:firebase-ui:0.4.3'
  compile 'com.firebaseui:firebase-ui-database:2.3.0'


  testCompile 'junit:junit:4.12'
}


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

第二个:

 buildscript {
      repositories {
        jcenter()
      }
      dependencies {
        classpath 'com.android.tools.build:gradle:2.3.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:3.1.0'

      }
    }

    allprojects {
      repositories {
        jcenter()
      }
    }

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

1 个答案:

答案 0 :(得分:0)

这种情况正在发生,因为您将旧的依赖项与新的依赖项混合在一起。因此,为了解决您的问题,请从build.gradle文件中删除以下代码行。

compile 'com.firebaseui:firebase-ui-database:2.3.0'

这行代码不需要,这就是你获得duplicate entry exception的原因。查看FirebaseUI的版本兼容性,我建议您查看官方documentation