gpt4 book ai didi

android - 进程 'command' 以非零退出值完成

转载 作者:行者123 更新时间:2023-11-30 01:21:44 26 4
gpt4 key购买 nike

我在android studio中开发了一个android项目,但是当我运行这个项目时出现这个错误:

Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: 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

那么我怎样才能摆脱这个错误呢?

这是我的build.gradle 文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

defaultConfig {
applicationId "com.example.abc.project1"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile files('libs/android-support-v4.jar')
compile files('libs/mongo-2.10.1.jar')
compile files('libs/org.apache.httpcomponents.httpclient_4.5.2.jar')
compile files('libs/okhttp-3.2.0.jar')
compile files('libs/org.apache.http.legacy.jar')
}

最佳答案

您正在添加相同的依赖项两次。

从您的 build.gradle 文件中删除 compile files('libs/android-support-v4.jar')

同时从您的项目中删除 libs/android-support-v4.jar(因为使用 compile fileTree(dir: 'libs', include: ['*.jar']) 您正在再次添加它。

关于android - 进程 'command' 以非零退出值完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36988869/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com