我在build.gradle(app)中使用以下库,并且在libs文件夹中有一些库,例如:android-studio项目中的“Arcgis SDK和ksoap2和gcm.jar”,当我构建它时,会导致以下内容错误:
错误:任务':app:dexDebug'的执行失败。 com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令'C:\ Program Files \ Java \ jdk1.8.0_66 \ bin \ java.exe''以非完成零退出值1
这是build.gradle(app):
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)时,当我删除其中一个项目时,项目构建成功。我需要所有这些。你能帮我解决这个问题吗?
答案 0 :(得分:0)
关于评论中描述的错误:
"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 Files\Java\jdk1.8.0_66\bin\java.exe'' finished with non-zero exit value 3 "
将此部分添加到build.gradle中的android-section:
android {
dexOptions {
javaMaxHeapSize "4g"
}
我们在更新到gradle-plugin 1.5.0后面临这个问题。这解决了我们的问题。