我在build.gradle(app)中使用了以下库,在libs文件夹中有一些库,例如:android studio项目中的"Arcgis SDK和ksoap2 and gcm.jar",当我构建它时,会导致以下错误:
错误:任务":app:dexDebug"的执行失败。com.android.ide.common.prrocess.ProcessException:org.gradle.prrocess.internal.ExecException:进程"命令"C:\Program Files\Java\jdk1.8.0_66\bin\Java.exe"以非零退出值1 结束
这是build.gradle(应用程序):
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:23'
buildToolsVersion '23.0.2'
defaultConfig {
applicationId "com.eywa.paltrack"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LGPL2.1'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.google.android.gms:play-services:8.3.0'
}
当我删除(Arcgis SDK)、(com.android.support:design)或(com.google.android.gms:play services)时,当我删除其中一个时,项目成功构建。我需要所有这些。你能帮我解决这个问题吗?
关于您评论中描述的错误:
"java.lang.OutOfMemoryError: GC overhead limit exceeded Error:Execution failed for task ':app:dexDebug'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:Program FilesJavajdk1.8.0_66binjava.exe'' finished with non-zero exit value 3 "
将此部分添加到您的构建中的android部分。gradle:
android {
dexOptions {
javaMaxHeapSize "4g"
}
在升级到gradle插件1.5.0之后,我们面临着这个问题。这解决了我们的问题。