I faced an issue where my project, which was working fine before, suddenly stopped building successfully. To fix this, I added the following code inside the dependencies block in my build.gradle file :
dependencies {
///add this code here ...
configurations.all {
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
}
///end...
}