I\'m using support library to show vector images on android kitkat. When I test my app on emulater I don\'t see any of these images. I made a separate layout for android lol
Implement and app:srcCompact and then you can use it on the ImageView
implementation 'com.android.support:appcompat-v7:28.0.0'
Make sure you implement the right version.
Then in your build.gradle set android.defaultConfig.vectorDrawables.useSupportLibrary = true
defaultConfig {
//...
vectorDrawables {
useSupportLibrary true
}
}