flutter ビルドエラー「Execution failed for task '...compileDebugKotlin'」と対処方法

2024/11/15に公開

エラー

* What went wrong:
Execution failed for task ':sms_otp_auto_verify:compileDebugKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction
   > Compilation error. See log for more details

対処方法

  1. flutter clean、flutter pub getをしてみる
flutter clean

flutter pub get
  1. Kotlinのバージョンを上げる(↓最新バージョン情報はこちら)
    https://kotlinlang.org/docs/releases.html#release-details
android/build.gradle
buildscript {
    ext.kotlin_version = '2.0.21' // 元は'1.9.0'でした
・・・
}

Discussion