当前位置: 首页 > 面试题库 >

任务':app:dexDebug'的执行失败。com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException

柯镜
2023-03-14
问题内容

在项目中导入docx4j库后出现此错误时,我正在构建我的android项目。我应该怎么做才能摆脱这种例外。

错误:任务’:app:dexDebug’的执行失败。>
com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程’command’/
usr / lib / jvm / java-7-openjdk-amd64 / bin / java’‘以非-零退出值2


问题答案:

我有同样的错误。但是我通过在依赖项中的build.gradle中添加以下缺少的行来解决了该问题。编译’com.parse.bolts:bolts-
android:1. +’

After adding this line, my dependencies body was like this:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.parse.bolts:bolts-android:1.+'
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
compile fileTree(dir: 'libs', include: "commons-io-2.4.jar")  }

您也可以与您的配对,看看它是否也可以帮助您



 类似资料: