当前位置: 首页 > 知识库问答 >
问题:

我正在用非零退出值2完成****。如何化解?[副本]

宦翔
2023-03-14

我读过很多与这个问题相关的问题,但所有这些问题都指向依赖项中的相同解决方案。我已经检查了我的依赖关系,他们是没有重复的jar,请告诉我应该如何解决这个问题

"Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_79\bin\java.exe'' finished with non-zero exit value 2"
compile fileTree(dir: 'libs', include: ['*.jar'])
        compile files('libs/nextomeframework_beta1_mod.jar')
        compile 'gov.nist.math:jama:1.0.3'
        compile 'org.apache.commons:commons-math3:3.3'
        compile 'com.google.code.gson:gson:2.2.4'
        compile 'joda-time:joda-time:2.3'
        compile 'com.fasterxml.jackson.core:jackson-core:2.5.1'
        compile 'com.fasterxml.jackson.core:jackson-databind:2.5.1'
        compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.1'
        compile 'com.googlecode.efficient-java-matrix-library:core:0.26'
        compile 'org.osmdroid:osmdroid-android:4.3'
        compile 'org.slf4j:slf4j-simple:1.6.1'
        compile 'commons-io:commons-io:2.4'
        compile 'org.codehaus.jackson:jackson-mapper-asl:1.8.5'
        compile 'org.codehaus.jackson:jackson-core-asl:1.8.5'
        compile 'com.android.support:appcompat-v7:23.1.0'
        compile 'com.android.support:design:23.1.0'
        compile files('libs/concurrent.jar')
        compile files('libs/Jama-1.0.3.jar')
        compile files('libs/zip4j_1.3.2.jar')

共有1个答案

马欣荣
2023-03-14

我认为您提到的jama库中存在重复

编译“gov.nist.math:jama:1.0.3”

而且

编译文件('libs/jama-1.0.3.jar')

试着移除其中一个。

 类似资料:
  • 问题内容: 任何人都可以通过以下错误帮助我。当我清理项目时,它不会显示任何错误,但是每次我尝试运行时,都会收到此消息。 错误:任务’:app:dexDebug’的执行失败。 com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程’命令’C:\ Program Files

  • null 错误:任务“:app:dexdebug”执行失败。com.android.ide.common.Process.processException:org.gradle.Process.internal.execexception:进程“command”C:\program files\java\jdk1.7.0_25\bin\java.exe“已完成,退出值为非零2 我的分级文件: 编辑

  • 当我添加编译'org.apache.httpcomponents:httpmime:4.2.3'时,出现了此错误。找不到解决方案,我也尝试了多个dex文件true在默认配置部分。我还尝试创建另一个测试应用程序,运行成功。 错误:任务“:app:TransformClassesWithDexForDebug”执行失败。com.android.build.api.transform.transform

  • 由于gradle内部存在问题,我无法运行程序。我最近添加了依赖项: 我的项目。我在我的项目中使用它来绘制地图。但是当我运行这个项目时,我得到了这个错误: 我相信这是由于上面的编译行,但我需要它作为我的项目的一部分。我不完全确定在这里该做什么。 编辑:这是我的全部build.gradle: 感谢所有帮助