Following the exact documentation but can't figure out why it's not working... https://developer.android.com/topic/libraries/view-binding
The class is never generated for my MainActivity
activity_main.xml
I've tried cleaning the project, rebuilding it. Even invalidating cache + restart, but have no idea why it's still not working...
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.