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
In summary:
Put vector drawable support in your module (build.gradle)
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
Instead of android:src="@drawable/icon"
use app:srcCompat="@drawable/icon"
Make sure your Activity extends AppCompatActivity
without this step is not possible to show vector image with app:srcCompat