Android App Icon Small Size Issue
I am tired figuring out why all my apps icon shows smaller than other apps. I create a 512 x 512 icon for my app. Here is my method of how I use to add an icon to my app. Open Mani
Solution 1:
If you use the methode described above you will always get the small icon.
Instead of doing all that, copy and paste you image icon in the drawable-hdpi and go to the AndroidManifest.xml
and change the following :
android:icon="@drawable/ic_launcher"
to
android:icon="@drawable/your icon name"
Compile !! you will get a big icon
Post a Comment for "Android App Icon Small Size Issue"