错误:Gradle:任务':app:compileDebugJava'执行失败

时间:2015-01-31 20:45:36

标签: android intellij-idea build compilation gradle

我尝试构建新的android项目并得到此错误:

错误:Gradle:任务':app:compileDebugJava'执行失败。

  

编译失败;有关详细信息,请参阅编译器错误输出。

我没有在intellij IDEA中看到任何编译细节输出

如何添加更多详细信息?

enter image description here

这是我的gradle.build

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

repositories {
    jcenter()
}

android {
    compileSdkVersion 19
    buildToolsVersion "19.1.0"

    defaultConfig {
        applicationId "com.example.reminders"
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    lintOptions {
        abortOnError false
    }
}


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v4:21.0.3'
    compile 'org.roboguice:roboguice:3.+'
    provided 'org.roboguice:roboblender:3.+'

}
你知道出了什么问题吗?

1 个答案:

答案 0 :(得分:2)

我遇到了同样的错误,我的解决方案是将sourceCompatibilitytargetCompatibility更改为JavaVersion.VERSION_1_7,如下所示:

compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

此外,您可能需要按照建议here

更改targetSdkVersion