1. ホーム
  2. java

[解決済み】Android Studioでタスク :app:compileDebugJavaWithJavac の実行に失敗しました。

2022-01-20 04:49:35

質問

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'
}

解決方法は?

をアップグレードしてみてください。 buildToolsVersion を"23.0.1"に変更すると、このようになります。

compileSdkVersion 23
buildToolsVersion "23.0.1"

このバージョンでbuildToolsをインストールしていない場合は、SDKManagerをヒントにダウンロードしてください。