2015-10-23 86 views
1

Android Studio的新增功能。Android Studio:java.exe以非零退出值結束2

我剛剛創建了一個新的空白應用程序並添加了一個新的Google Cloud Module。 添加模塊後,我得到的錯誤:

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.7.0_79\bin\java.exe'' finished with non-zero exit value 2 

我已經在這裏StackOverflow上讀取多個答案,所有的暗示與gradle這個依賴一個錯誤,但我看不到一個。這裏是我的兩個文件的gradle:

的build.gradle(模塊:APP)

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.1" 

    defaultConfig { 
     applicationId "com.bristow.conor.intellipa" 
     minSdkVersion 23 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.1.0' 
    compile 'com.google.android.gms:play-services:8.1.0' 
    compile project(path: ':backend', configuration: 'android-endpoints') 
} 

的build.gradle(模塊:後端)

// If you would like more information on the gradle-appengine-plugin please refer to the github page 
// https://github.com/GoogleCloudPlatform/gradle-appengine-plugin 

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.google.appengine:gradle-appengine-plugin:1.9.18' 
    } 
} 

repositories { 
    jcenter(); 
} 

apply plugin: 'java' 
apply plugin: 'war' 
apply plugin: 'appengine' 

sourceCompatibility = JavaVersion.VERSION_1_7 
targetCompatibility = JavaVersion.VERSION_1_7 

dependencies { 
    appengineSdk 'com.google.appengine:appengine-java-sdk:1.9.18' 
    compile 'com.google.appengine:appengine-endpoints:1.9.18' 
    compile 'com.google.appengine:appengine-endpoints-deps:1.9.18' 
    compile 'javax.servlet:servlet-api:2.5' 
    compile 'com.googlecode.objectify:objectify:4.0b3' 
    compile 'com.ganyo:gcm-server:1.0.2' 
} 

appengine { 
    downloadSdk = true 
    appcfg { 
     oauth2 = true 
    } 
    endpoints { 
     getClientLibsOnBuild = true 
     getDiscoveryDocsOnBuild = true 
    } 
} 

我沒有看到任何重複,也不是我使用'+'與版本號似乎解決其他人的問題。我沒有添加/修改或修改項目,但添加模塊。在添加模塊之前,它編譯正確。使用'com.google.android.gms:play-services:8.1.0'

回答

-1

compile 'com.google.android.gms:play-services-gcm:8.3.0' 而不是gradle這個文件中添加此行

defaultConfig {   
    // Enabling multidex support. 
    multiDexEnabled true 
} 
相關問題