gpt4 book ai didi

java - 错误 :Execution failed for task ':app:dexDebug' . .. 使用 android studio

转载 作者:太空狗 更新时间:2023-10-29 14:55:57 24 4
gpt4 key购买 nike

我正在使用这个库 https://github.com/mikepenz/MaterialDrawer

当我尝试运行我的项目时,出现以下错误:

错误:

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_31.jdk/Contents/Home/bin/java'' finished with non-zero exit value 2

如果我尝试使用 jdk1.7

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_45\bin\java.exe'' finished with non-zero exit value 2

这是我的build.gradle

buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
maven { url 'https://maven.fabric.io/public' }
}

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

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

productFlavors {
}


packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.android.support:recyclerview-v7:+'
compile 'com.google.android.gms:play-services:7.5.0'
compile 'com.google.code.gson:gson:2.3'
compile 'com.mcxiaoke.volley:library:1.0.+'

compile fileTree(dir: 'libs/httpclient', include: ['*.jar'])

compile 'com.afollestad:material-dialogs:0.7.6.0'
compile 'com.blunderer:materialdesignlibrary:2.0.0'
compile 'com.github.navasmdc:MaterialDesign:1.5@aar'


//https://github.com/mikepenz
compile('com.mikepenz:materialdrawer:3.1.2@aar') {
transitive = true
}
compile('com.mikepenz:aboutlibraries:5.0.7@aar') {
transitive = true
}


compile('com.crashlytics.sdk.android:crashlytics:2.4.0@aar') {
transitive = true;
}
}

我也尝试了这些解决方案,但它不起作用:

defaultConfig {
...
multiDexEnabled = true
}

dependencies {

...
compile 'com.android.tools.build:gradle:1.1.2'
...
}

最佳答案

您的问题应该通过指定 -

来解决
defaultConfig {        
// Enabling multidex support.
multiDexEnabled true
}

您可以在 65K Method Limit 阅读更多相关信息

关于java - 错误 :Execution failed for task ':app:dexDebug' . .. 使用 android studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31420913/

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