How to create launch icon for android game?

Hi; i have an balloon icon for android game icons: but i see your standard game icon still on my phone screen. how can i put my icon instead of it? 

i used tihs service : http://icon.angrymarmot.org/

and i have icons folders for all my icons. But if i create an apk, i can not see any icon on the screen. 

My build.settings:

– For more information on build.settings see the Corona SDK Build Guide at:

https://docs.coronalabs.com/guide/distribution/buildSettings

settings =

{

orientation =

{

– Supported values for orientation:

– portrait, portraitUpsideDown, landscapeLeft, landscapeRight

default = “portrait”,

supported = { “portrait”, },

},

excludeFiles =

{

– Include only the necessary icon files on each platform

iphone = { “icons/Icon-*dpi.png”, },

android = { “icons/Icon.png”, “icons/Icon-Small-*.png”, “icons/Icon*@2x.png”, },

},

– iOS Section

iphone =

{

plist =

{

UIStatusBarHidden = false,

UIPrerenderedIcon = true, – set to false for “shine” overlay

–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend

CFBundleIconFiles =

{

“icons/Icon.png”,

“icons/Icon@2x.png”,

“icons/Icon-167.png”,

“icons/Icon-60.png”,

“icons/Icon-60@2x.png”,

“icons/Icon-60@3x.png”,

“icons/Icon-72.png”,

“icons/Icon-72@2x.png”,

“icons/Icon-76.png”,

“icons/Icon-76@2x.png”,

“icons/Icon-Small.png”,

“icons/Icon-Small@2x.png”,

“icons/Icon-Small@3x.png”,

“icons/Icon-Small-40.png”,

“icons/Icon-Small-40@2x.png”,

“icons/Icon-Small-50.png”,

“icons/Icon-Small-50@2x.png”,

},

},

},

– Android Section

android =

{

usesPermissions =

{

“android.permission.INTERNET”,

},

},

}

Icons need to be in the root folder.

http://icon.angrymarmot.org/ is a great service, except that it has not been kept up-to-date.

For example: it doesn’t create Icon-167.png, and perhaps some others.

Icons need to be in the root folder.

http://icon.angrymarmot.org/ is a great service, except that it has not been kept up-to-date.

For example: it doesn’t create Icon-167.png, and perhaps some others.