I was facing the same problem and solved it using the below steps:
Add this in your app's build.gradle
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
Use namespace:
xmlns:app="http://schemas.android.com/apk/res-auto"
Then use:
app:srcCompat="@drawable/your_vector_drawable_here"