изменилось поведение после обновления: в build.gradle
// BUTTERKNIFE
implementation 'com.jakewharton:butterknife:9.0.0-rc3'
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-rc3'
и в настройках gradle.properties:
android.enableJetifier=true
android.useAndroidX=true
android.enableSeparateAnnotationProcessing=true
теперь вот что я получаю:
Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules jetified-guava-23.5-jre.jar (com.google.guava:guava:23.5-jre) and listenablefuture-1.0.jar (com.google.guava:listenablefuture:1.0)
Go to the documentation to learn how to Fix dependency resolution errors.
Вот что позволило устранить ошибку:
implementation ("androidx.room:room-compiler:$room__version")
{
exclude group: 'com.google.guava' //this is what fixed the library duplication error
}