I am getting the following error while building the project. haven\'t used CoordinatorLayout in this project. just added as a dependency in build.gradle :
I am usin
It might be cause of a library, I faced it because of Glide.
It was
implementation 'com.github.bumptech.glide:glide:4.7.1'
So I added exclude group: "com.android.support" And it becomes
exclude group: "com.android.support"
implementation ('com.github.bumptech.glide:glide:4.7.1') { exclude group: "com.android.support" }