gpt4 book ai didi

android - 在构建 Android 项目时添加 dexdebug 错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:53:56 27 4
gpt4 key购买 nike

Gradle 构建控制台显示此消息。

Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home/bin/java'' finished with non-zero exit value 2

我被告知这个问题是由于 build.gradle 文件设置错误造成的。我的 gradle 文件如下所示。

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc2"

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

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile project(':volley')
compile project(':android-support-v4')
}

我应该在这里修复什么?

最佳答案

将其放入您的 build.gradle 中:

android {
...
defaultConfig {
...
multiDexEnabled true
...
}
...
}
...
dependencies {
...
compile 'com.android.support:multidex:1.0.1'
...
}

并将其放入您的 AndroidManifest.xml 中:

<application
...
android:name="android.support.multidex.MultiDexApplication"
...>

关于android - 在构建 Android 项目时添加 dexdebug 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31207819/

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