Add dexdebug error when creating Android project

The Gradle Build console displays this message.

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 

I was told that this problem is due to the incorrect configuration of the build.gradle file. My Gradle file is as follows.

 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') } 

What am I supposed to fix here?

+5
source share
1 answer

Put this in your build.gradle:

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

and put this in your AndroidManifest.xml:

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

All Articles