2015-01-31 430 views
7

我嘗試建立我的新的Android項目,並得到這個錯誤:錯誤:搖籃:執行失敗的任務「:應用程序:compileDebugJava」

錯誤:搖籃:執行失敗的任務「:應用程序:compileDebugJava」。

Compilation failed; see the compiler error output for details.

我沒有在我的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.+' 

} 

你知道出了什麼問題?

回答

2

我已經得到了同樣的錯誤,我的解決辦法是改變sourceCompatibilitytargetCompatibilityJavaVersion.VERSION_1_7這樣的:

compileOptions { 
     sourceCompatibility JavaVersion.VERSION_1_7 
     targetCompatibility JavaVersion.VERSION_1_7 
    } 

此外,可能需要更改targetSdkVersion的建議here

+0

不幸,沒」噸工作:( – NarendraJi 2017-06-03 11:01:27

相關問題