无法使用 gradle 添加 xstream 1.4.8 依赖项到 Android

Can't add xstream 1.4.8 dependency to Android using gradle

我在将 xstream 库添加到基于 Android gradle 的应用程序时遇到困难。根据我在 xstream 文档中阅读的内容,它应该可以工作 "out of the box"。但是,当我添加依赖项时:

compile 'com.thoughtworks.xstream:xstream:1.4.8'

我在构建过程中遇到以下异常:

* What went wrong:
Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/xmlpull/v1/XmlPullParser.class

好的,也许我应该排除 xmlpull?我尝试将此依赖项更改为:

compile ('com.thoughtworks.xstream:xstream:1.4.8') {
    exclude group: 'xmlpull', module: 'xmlpull'
}

结果,一段时间后:

UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.RuntimeException: Exception parsing classes
    at com.android.dx.command.dexer.Main.processClass(Main.java:752)
// ...
Caused by: com.android.dx.cf.iface.ParseException: bad class file magic (cafebabe) or version (0034.0000)
    at com.android.dx.cf.direct.DirectClassFile.parse0(DirectClassFile.java:472)
// ...
1 error; aborting

我还使用 gradle dependencies 检查了项目依赖项,但没有发现任何与 xml 相关的内容。

我的整个 build.gradle 文件:

group 'myGroup'
version '1.0'

apply plugin: 'com.android.application'

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

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    useLibrary 'org.apache.http.legacy'

    defaultConfig {
        applicationId "edu.foo.app"
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }

    buildTypes {
        release {
            minifyEnabled false
            //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
}

repositories {
    mavenCentral();

    maven {
        url 'https://repository-achartengine.forge.cloudbees.com/snapshot/'
    }
}

dependencies {
    testCompile 'junit:junit:4.12'

    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile project(':Commons')

    compile 'commons-io:commons-io:2.4'
    compile 'commons-codec:commons-codec:1.10'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'

    compile 'org.achartengine:achartengine:1.2.0'

    compile 'com.google.code.gson:gson:2.4'

    compile 'com.thoughtworks.xstream:xstream:1.4.8'

//    compile ('com.thoughtworks.xstream:xstream:1.4.8') {
//        exclude group: 'xmlpull', module: 'xmlpull'
//    }
}

我应该怎么做才能将 xstream 库包含到我的项目中?

解决方案是将xstream降级到 v1.4.7 并排除 xmlpull。

compile ('com.thoughtworks.xstream:xstream:1.4.7') {
    exclude group: 'xmlpull', module: 'xmlpull'
}

我不知道确切原因,但我猜它一定与 java8 相关。

我得到了和我一样的 Error.What,我只是从我的默认首选项中禁用了 "Enable all the test artifacts"。

和开放构建变体 select 单元测试..

希望以上回答能对大家有所帮助。