I had a similar problem, when I added a ButterKnife library:
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
But, then I notice that version did not work very well and changed it by (GRADLE):
implementation 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
Maybe you need to check the version of some library you are using.