任务执行失败:app:compileDebugJavaWithJavac in Android Studio

2022-08-31 13:53:47

我正在Android Studio中开发一个Android应用程序。不太确定出了什么问题。几天前,我成功构建了。任何帮助都会很棒。

这是错误:

Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

这是我的构建.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "21.1.2"

defaultConfig {
    multiDexEnabled true
    applicationId "com.tubbs.citychurchob"
    minSdkVersion 14
    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'])
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:cardview-v7:23.1.0'
compile 'com.parse.bolts:bolts-android:1+'
compile 'com.android.support:recyclerview-v7:23.1.0'
}

答案 1

在 Android Studio 3.1 中,您可以在“构建”窗口中查看错误详细信息。

打开“构建”选项卡。它们有些隐藏,你必须扩展Java编译器节点。您将在那里看到错误。

enter image description here

但是有更好的方法来查看错误。您可以单击“切换视图”按钮以更好地了解错误。这样,您就不必展开每个节点。

enter image description here


答案 2

尝试升级到“23.0.1”,如下所示:buildToolsVersion

compileSdkVersion 23
buildToolsVersion "23.0.1"

如果您没有安装此版本的 buildTools,请将其下载为 SDKManager 作为提示。


推荐