2016-10-18 59 views
0

更新: 我做了Nitesh建議的更改,但仍然收到相同的錯誤。我在下面更新了我的代碼,以顯示我的build.gradle文件現在看起來如何錯誤:Gradle:任務':app:dexDebug'的執行失敗。 >添加谷歌播放服務後

我在將compile 'com.google.android.gms:play-services:9.6.1'添加到我的依賴項後嘗試構建並運行我的應用程序時出現此錯誤。

Error:Gradle: Execution failed for task ':app:dexDebug'. 
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/usr/lib/jvm/jdk1.8.0_101/bin/java'' finished with non-zero exit value 1 

我讀過很多帖子,人們得到相同的錯誤,但沒有任何建議爲我工作。如果我從build.gradle中刪除compile 'com.google.android.gms:play-services:9.6.1',但一切正常。顯然不是,雖然

選項到目前爲止,我曾嘗試:

  1. 清潔/重建項目
  2. 新增multiDexEnabled true到defaultConfig
  3. 添加dexOptions{incremental true javaMaxHeapSize "4g"
  4. 確信沒有重複庫

這是我的完整應用程序級build.gradle文件

buildscript { 
    repositories { 
     jcenter() 
     mavenCentral() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.2.3' 
    } 
} 
apply plugin: 'com.android.application' 

repositories { 
    jcenter() 
    mavenCentral() 
} 

android { 
    signingConfigs { 
    } 
    compileSdkVersion 24 
    buildToolsVersion "24.0.3" 
    defaultConfig { 
     multiDexEnabled true 
     applicationId "com.codebyjordan.ancientcityapp" 
     minSdkVersion 16 
     targetSdkVersion 24 
     versionCode 1 
     versionName "1.0" 
    } 
    dexOptions { 
     incremental true 
     javaMaxHeapSize "4g" 
    } 
    compileOptions { 
     sourceCompatibility JavaVersion.VERSION_1_8 
     targetCompatibility JavaVersion.VERSION_1_8 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    compile 'com.android.support:appcompat-v7:24.2.1' 
    compile 'com.android.support:cardview-v7:24.2.1' 
    compile 'com.android.support:recyclerview-v7:24.2.1' 
    compile 'com.googlecode.json-simple:json-simple:1.1' 
    compile 'com.squareup.okhttp3:okhttp:3.4.1' 
    compile 'se.akerfeldt:okhttp-signpost:1.1.0' 
    compile 'oauth.signpost:signpost-core:1.2.1.2' 
    compile 'com.google.code.gson:gson:2.6.2' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.google.android.gms:play-services:9.6.1' 
} 
apply plugin: 'com.google.gms.google-services' 

這裏是我的項目的gradle級文件

buildscript { 
    repositories { 
     jcenter() 
     mavenCentral() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.2.3' 
     classpath 'com.google.gms:google-services:3.0.0' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
     mavenCentral() 
    } 
} 
+0

你設置機器人工作室使用JDK 8? – Sanjeet

回答

0

,你需要在你的項目水平build.gradle文件添加classpath 'com.google.gms:google-services:3.0.0'

dependencies { 
    classpath 'com.android.tools.build:gradle:2.2.0' 
    classpath 'com.google.gms:google-services:3.0.0' 
    // NOTE: Do not place your application dependencies here; they belong 
    // in the individual module build.gradle files 
} 

而且在應用水平build.gradle文件的末尾添加apply plugin: 'com.google.gms.google-services'。並再次建立。

,就把這行中應用的結束/的build.gradle

apply plugin: 'com.google.gms.google-services' 
+0

謝謝你的建議。不幸的是,我嘗試了它們,但仍然收到相同的錯誤。我已更新我的問題以顯示我對代碼所做的更改。 –

相關問題