Android Studio中的任务:app:compileDebugJavaWithJavac

我正在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.

这是我的build.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'

}


波斯汪
浏览 11478回答 3
3回答

LEATH

在Android Studio 3.1中,您可以在Build窗口中查看错误的详细信息。打开构建选项卡。它们有些隐藏,您必须扩展Java编译器节点。您将在此处看到错误。但是有一种更好的方法来查看错误。您可以单击“切换视图”按钮以更好地查看错误。这样,您不必扩展每个节点。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java
Android