某些 android 库与 google 播放服务之间不兼容

Incompatibility between some android libraries and google play services

我在 build.gradle (app) 中使用了以下库,并且在 libs 文件夹中有一些库,例如: android-studio 项目中的 "Arcgis SDK and ksoap2 and gcm.jar",当我构建它时,导致以下错误:

错误:任务“:app:dexDebug”执行失败。 com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: 进程'command '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 Files\Java\jdk1.8.0_66\bin\java.exe'' finished with non-zero exit value 3 "

将此部分添加到 build.gradle 中的 android 部分:

android {

   dexOptions {
     javaMaxHeapSize "4g"
   }

更新到 gradle-plugin 1.5.0 后,我们遇到了这个问题。这解决了我们的问题。