-1

I am using vector drawable for my app, and in the app, vector drawables are properly working for 4.2.1 or grater. but only the app icon is not showing for api level 4.4.4 or below.

this is file name, app_logo.xml . i.e. in drawable folder.

enter image description here

Indra KP
  • 293
  • 1
  • 2
  • 16
  • Possible duplicate of [Android vector drawable app:srcCompat not showing images](https://stackoverflow.com/questions/38221986/android-vector-drawable-appsrccompat-not-showing-images) – Oussema Aroua Jul 10 '17 at 09:44
  • @OussemaAroua, that issue is different, i did all changes so my app is working fine if i use drawable in app. But my issue is that, the application App icon on android dashboard is not showing my app icon. – Indra KP Jul 10 '17 at 09:53

1 Answers1

0

Try adding your icon as an "Image Asset," so that all the different DPI (dots per inch) versions of the icon are created.

This will make sure that your icon is handled even at lower resolution versions.

Joey Pinto
  • 1,735
  • 1
  • 18
  • 34