eclipse - java.lang.IllegalArgumentException : already added: Lorg/hamcrest/BaseDescription; Conversion to Dalvik format failed with error 1

标签 eclipse maven adt m2e eclipse-juno

首先,至少有 2 个帖子有同样的问题,但这些解决方案不再起作用,至少在我的安装中不起作用。

我将 m2e 与 Eclipse 和 Android 一起使用,并尝试通过选择 run as-> Android application 将应用程序作为“Android Application”运行,但我总是收到此错误:

UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added: Lorg/hamcrest/BaseDescription;
. . .

[2012-09-08 19:50:41 - net.mydomain.project-TRUNK] Conversion to Dalvik format failed with error 1



这是描述的问题here in Tools R14 section .首先,这无法解决,因为我在 ADT 20.0.3 中遇到了这个问题。其次,我没有这些所谓的“_src”文件夹。我以前从未在 Maven 项目中见过它们,所以我不知道我现在应该做什么。我什至没有链接两次的任何库。至少我在我的项目中没有看到一些。任何想法如何让这个工作?

如果这有帮助,这是我的 pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
  <project xmlns="http://maven.apache.org/POM/4.0.0"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven- v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>net.devgems.android</groupId>
    <artifactId>kurzparkzonewien</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>apk</packaging>
    <name>kurzparkzonewien</name>

    <properties>
        <platform.version>1.6_r2</platform.version>
        <android.sdk.path>/opt/android-sdk-linux</android.sdk.path>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.google.android</groupId>
            <artifactId>android</artifactId>
            <version>${platform.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
            <version>1.1.1</version>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.0.1</version>
        </dependency>
        <!-- Make sure this is below the android dependencies -->
        <dependency>
            <groupId>com.pivotallabs</groupId>
            <artifactId>robolectric</artifactId>
            <version>1.0-RC1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <outputDirectory>target/classes</outputDirectory>
        <testOutputDirectory>target/test-classes</testOutputDirectory>

        <plugins>
            <plugin>
                 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
                <artifactId>android-maven-plugin</artifactId>
                <version>3.1.1</version>
                <configuration>
                    <androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile>
                    <assetsDirectory>${project.basedir}/assets</assetsDirectory>
                    <resourceDirectory>${project.basedir}/res</resourceDirectory>
                    <nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory>
                    <sdk>
                        <platform>4</platform>
                        <path>${android.sdk.path}</path>
                    </sdk>
                    <undeployBeforeDeploy>true</undeployBeforeDeploy>
                </configuration>
                <extensions>true</extensions>
            </plugin>

            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
   </project>

我正在使用 Eclipse Juno、ADT 20.0.3、m2e 1.1.0。

最佳答案

我尝试了上述解决方案,但仍然出现错误。只有经过更多尝试和错误后,我才发现 hamcrest 类也包含在另一个 jar 中:mockito(我还不知道 mockito 不适用于我的仪器测试)

所以我通过从我的依赖项中删除 mockito-all.jar 并从 junit 的传递依赖项中排除 hamcrest 来解决我的问题,如下所示:

 <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <scope>test</scope>
    <version>4.10</version>
    <exclusions>
        <exclusion>
            <artifactId>hamcrest-core</artifactId>
            <groupId>org.hamcrest</groupId>
        </exclusion>
    </exclusions>
  </dependency>

公共(public)日志记录(截至撰写之日)也可能需要此排除,因为否则 apk 构建器将抗议旧类。

关于eclipse - java.lang.IllegalArgumentException : already added: Lorg/hamcrest/BaseDescription; Conversion to Dalvik format failed with error 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12333238/

相关文章:

java - 在数据库中搜索条目时出现语法错误

java - (Maven项目)无法找到或加载主类 "class"

android - 无法使用 Android L (API 20) 创建模拟器

c - 队列不会提取

java - Liferay 7 - 从 ADT 获取 Assets 评论

java - 我的java游戏在eclipse中运行,但是一旦导出它 "can' t find LWJGL”并且不会运行

eclipse - 从 Eclipse 的内部 Web 浏览器中删除 cookie 和缓存

java - 完整的新手程序员: Novice Guide to Java Programming

java - 在 apache-karaf-2.3.10 中安装依赖 jar 文件

java - 使用 Linux 命令行运行 Java Maven 项目