Search code examples
androidandroid-viewbinding

Followed tutorial but can't get MainActivityBinding class generated for ViewBinding


Following the exact documentation but can't figure out why it's not working... https://developer.android.com/topic/libraries/view-binding

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

The class is never generated for my MainActivity activity_main.xml

enter image description here

I've tried cleaning the project, rebuilding it. Even invalidating cache + restart, but have no idea why it's still not working...


Solution

  • You added tools:viewBindingIgnore="true" into the layout, so the binding class for the layout is not created.

    Delete tools:viewBindingIgnore="true" and try again.