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
I had a similar issue and after following all steps from Jared Burrows's answer the problem was not solved.
Turns out that the "app" namespace inside my layout file was set as:
xmlns:app="http://schemas.android.com/tools"
instead of:
xmlns:app="http://schemas.android.com/apk/res-auto"
After changing this the problem was fixed