app:kaptDebugKotlin execution failed

After 4 hours too many of trying to figure this out myself, I finally came here and this solved my problem.
Additionally I had to update the following (within app/build.gradle) to be consistent with my version of java:

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = ‘17’
}

Thanks a ton.