Gradle Build控制台显示此消息.
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
Run Code Online (Sandbox Code Playgroud)
我被告知这个问题是由于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')
}
Run Code Online (Sandbox Code Playgroud)
我应该在这里解决什么?
将其放入您的 build.gradle 中:
android {
...
defaultConfig {
...
multiDexEnabled true
...
}
...
}
...
dependencies {
...
compile 'com.android.support:multidex:1.0.1'
...
}
Run Code Online (Sandbox Code Playgroud)
并将其放入您的 AndroidManifest.xml 中:
<application
...
android:name="android.support.multidex.MultiDexApplication"
...>
Run Code Online (Sandbox Code Playgroud)