Add these lines to your gradle.properties
android.useAndroidX=true
android.enableJetifier=true
If gradle.properties is absent, create the file in the root directory of your project.
It looks like you have some support relics anywhere in your dependencies, maybe from a lib? To investigate and see the dependencies tree, please run:
./gradlew :yourApp:dependencies
and then you see from where it comes.