Google App Engine Gradle依赖冲突

时间:2015-04-20 18:03:12

标签: android google-app-engine android-gradle google-cloud-endpoints

我在我的应用中遇到了依赖项问题,我不会将endpoints-backend模块作为依赖项添加到我的app模块中,如下所示:

dependencies

当我编译时,它给了我这个错误:

  

错误:任务':app:preDexDebug'执行失败。 > com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:Process' command' /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/首页/斌/ java的''完成非零退出值3

当我删除endpoints-backend依赖项时,程序会运行,但我需要它作为依赖项,因此我可以访问MainActivity中的端点代码。

这是我的Gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "com.blume.android"
    minSdkVersion 14
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile project(path: ':endpoints-backend', configuration: 'android-endpoints')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:6.5.87'
compile project(path: ':cloud-backend', configuration: 'android-endpoints')
compile 'javax.persistence:persistence-api:1.0'
compile project(':endpoints-backend')
}

感谢所有帮助!

1 个答案:

答案 0 :(得分:0)

你应该删除这一行:

compile project(':endpoints-backend')

你把它包含在这里:

compile project(path: ':endpoints-backend', configuration: 'android-endpoints')