My app's icon is still default when I upload to the android market
android, google-play
Solution
You need to add the icon to these three folders under you project:
- drawable-hdpi
- drawable-mdpi
- drawable-ldpi
The resolution of the icons should be:
- 72 * 72 px
- 48 * 48 px
- 36 * 36 px respectively
If the icon you want is not present, it will revert to the original default icon.
You could also read the Android Icon Guidelines here (specifically the "Size and positioning" section): Icon Guidelines
Problem
Hey everyone, when I run my app on my phone the icon shows up as the one I want it to be, the one i placed in the drawable folder in eclipse. However, when I upload the app to google, the apps icon is still the default android icon. How come it is doing this? this is in my androidmanifest.xml: application android:icon="@drawable/icon" android:label="@string/app_name"