I want to have just one icon for the app regardless of display resolution. The icon file is “Icon.png”, 512x512 and is located in the project directory where are all files (like “main.lua”). I build the project and put the apk in my android phone. But the file has the general corona icon, not mine. I install and the game is there with the wrong icon. What is hapening?
My files are:
– config.lua
application =
{
content =
{
width = 480,
height = 854,
scale = “letterbox”, – zoom to fill screen, possibly cropping edges
xAlign = “center”,
yAlign = “center”
},
}
– build.settings
settings =
{
orientation =
{
default = “landscapeRight”,
},
}
I use free version of corona. Is this the reason?
Other think: how to use a spash screen? And it can be used in corona free?