7
我嘗試建立我的新的Android項目,並得到這個錯誤:錯誤:搖籃:執行失敗的任務「:應用程序:compileDebugJava」
錯誤:搖籃:執行失敗的任務「:應用程序:compileDebugJava」。
Compilation failed; see the compiler error output for details.
我沒有在我的IntelliJ IDEA看到任何編譯細節輸出
我怎麼可以添加更多的細節?
這是我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.+'
}
你知道出了什麼問題?
不幸,沒」噸工作:( – NarendraJi 2017-06-03 11:01:27