错误JSON.simple:java.util.zip.ZipException:重复条目:org/hamcrest/BaseDescription.class

Pet*_*ton 10 android build gradle json-simple android-gradle-plugin

在添加JSON.simple并启用MultiDex并获得以下错误后,我在android studio中遇到问题:

错误:任务':app:packageAllDebugClassesForMultiDex'的执行失败.java.util.zip.ZipException:重复条目:org/hamcrest/BaseDescription.class

这是我的build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
    applicationId "com.MildlyGoodApps.EffortlessDescriptions"
    minSdkVersion 10
    targetSdkVersion 23
    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:23.0.1'
compile 'com.googlecode.json-simple:json-simple:1.1.1'
compile 'com.android.support:multidex:1.0.0'
}
Run Code Online (Sandbox Code Playgroud)

谢谢.

固定:

compile 'com.googlecode.json-simple:json-simple:1.1.1'compile('com.googlecode.json-simple:json-simple:1.1.1'){ exclude group: 'org.hamcrest', module: 'hamcrest-core' }.

谢谢Kane O'Riley!

Kan*_*ley 20

更改json-simple导入以排除hamcrest依赖关系,如下所示:

compile('com.googlecode.json-simple:json-simple:1.1.1') {
    exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
Run Code Online (Sandbox Code Playgroud)

这将防止包含多个依赖项副本.