Kotlin Android Extensions pluginがKotlin 1.8で削除されるそうです

android-developers.googleblog.com

Kotlin Android Extensions pluginはfindViewByIdを書くのを減らしたり、Parcelizeを使うために、使われてきました。

In November 2020, we announced that this plugin has been deprecated in favor of better solutions

既にdeprecatedが発表されているので、使用は推奨されていません。

We are now setting a deadline for these migrations: the plugin will be removed in Kotlin 1.8, which is expected to be released by the end of 2022. At that time, you won’t be able to update your project to newer Kotlin versions if it still depends on the Kotlin Android Extensions plugin

Kotlin 1.8ではこのプラグインは削除されるので、プロジェクトがこのプラグインに依存していると、Kotlin 1.8にはアップデートできなくなります。

Instead of synthetics, we recommend using View Binding, which generates type-safe binding classes from XML layout files

syntheticsを書き換えるならView Bindingがおすすめです。

When building new features, consider using Jetpack Compose, Android's modern UI toolkit.

思い切ってJetpack Compose を使ってもいいよ。

Another feature included in the plugin is Parcelize, which helps you create parcelable classes. Parcelize is now available in the standalone kotlin-parcelize plugin with unchanged functionality.

Parcelizeを使いたいなら、kotlin-parcelize pluginがあります。

Kotlin Android Extensions pluginを削除して、書き換えを始めましょう。