I\'m following this tutorial: https://www.youtube.com/watch?v=xtElLuzjA0U
I\'m using Android Studio 3.2.1 - Whenever I implement \"implementation \'me.zhanghai.andr
Its because your project has different versions of the same library - androidx and pre-androidx.
In android studio tool bar go to: Refactor-> Migrate to androidX... -> Migrate
These two lines automatically resolved my dependency conflicts
Add
android.useAndroidX=true
android.enableJetifier=true
in your application gradle.properties
file.