我正在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.gradleapply plugin: 'com.android.application'android {compileSdkVersion 23buildToolsVersion "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'}
3 回答
LEATH
TA贡献1936条经验 获得超6个赞
在Android Studio 3.1中,您可以在Build窗口中查看错误的详细信息。
打开构建选项卡。它们有些隐藏,您必须扩展Java编译器节点。您将在此处看到错误。
但是有一种更好的方法来查看错误。您可以单击“切换视图”按钮以更好地查看错误。这样,您不必扩展每个节点。
添加回答
举报
0/150
提交
取消