我的Android应用中出现重复输入错误

时间:2017-02-13 14:45:36

标签: android android-gradle build.gradle

同步gradle文件时发生此错误

  

错误:任务':app:transformClassesWithJarMergingForDebug'的执行失败。    com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / zxing / client / android / camera / CameraConfigurationUtils.class

我尝试清理项目,重建项目和multidex,不包括模块。

我的min sdk是19.如果大于20,multidex工作正常, 但是在SDK 19中它没有用。

这是我的gradle构建文件:

apply plugin: 'com.android.application'

android 
{

    compileSdkVersion 24
    buildToolsVersion '25.0.2'

    defaultConfig 
    {
        applicationId "com.example.prototype_01"
        minSdkVersion 19
        targetSdkVersion 22
        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')
  testCompile 'junit:junit:4.12'
  compile 'com.android.support:appcompat-v7:24.1.1'
  compile 'com.android.support:design:24.1.1'
  compile 'com.google.android.gms:play-services-appindexing:9.6.1'
  compile 'com.android.support:multidex:1.0.0'
  compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
  compile 'com.google.zxing:core:3.2.0'
  compile 'com.github.bumptech.glide:glide:3.5.1'
  //compile files('libs/android-core-3.2.1.jar')
  compile 'com.android.support:support-v4:24.2.1'
  compile 'com.tsengvn:Typekit:1.0.0'
  compile 'com.google.firebase:firebase-messaging:9.6.1'
}
apply plugin: 'com.google.gms.google-services'

可以采取哪些措施来解决这个问题?

2 个答案:

答案 0 :(得分:1)

与Multidex无关。

  

com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / zxing / client / android / camera / CameraConfigurationUtils.class

这意味着您要添加相同的课程CameraConfigurationUtils.class 两次

检查您的jar文件 如果您有libs/android-core-3.2.1.jar,则会增加两个相同的班级 此类位于jar内和library编译'com.journeyapps:zxing-android-embedded:3.2.0@aar'内。

从libs文件夹中删除jar文件。

答案 1 :(得分:0)

  

重复输入:com / google / zxing /

你添加了太多的库。尝试一次删除一个,直到您的应用程序可以构建。

首先从与Zxing相关的库中删除任何冲突的Jar文件

Zxing核心没有必要,嵌入式核心已经编译好了

compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
// compile 'com.google.zxing:core:3.2.0'

Multidex /更改您的SDK版本不会神奇地修复重叠的依赖项