182

enter image description here

After updating Android Studio to Arctic Fox and Android Gradle plugin to 7.0.0 I'm facing this warning, I mean the app can be built successfully nonetheless of this warning but what I am missing here? What's the problem here?

According to the official View Binding reference, I'm enabling it the right way. here is my build.gradle if anyone is interested in checking.

There are some related questions but I don't think they are relevant in this situation.

YaMiN
  • 3,194
  • 2
  • 12
  • 36

2 Answers2

383

Remove equal sign. On the screenshot you use Kotlin configuration, but Groovy is needed here. See the difference:

ViewBinding usage

YaMiN
  • 3,194
  • 2
  • 12
  • 36
Konstantin Annikov
  • 11,655
  • 4
  • 27
  • 40
0

Try to rename your file 'build.gradle' to 'build.gradle.kts'. And change its content to the appropriate Kotlin DSL syntax where necessary.

iZhenius
  • 1
  • 1
  • 1
    Yeah, that's an option too. I have nothing against Kotlin DSL in build.gradle but I think removing an equal sign is way easier and faster than migrating my build.gradle file to Kotlin DSL syntax. – YaMiN Feb 10 '22 at 18:29
  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Feb 10 '22 at 22:08