I already tried Invalidating caches, cleaning the project, re-installing the app. I\'m not using data binding.
I\'m using Realm plugin io.realm:re
Are you using Realm in your project? I had the same problem and fixed it by upgrading my Realm dependency to the latest stable version because I found this related issue.
On build.gradle(Project):
dependencies {
classpath 'io.realm:realm-gradle-plugin:6.0.2'
}
After that, I cleaned and rebuilt the project (just in case).