It took me a lot of time to find out why my icon looks blurry on my iphone4 :
Icon@2x.png is not taken !
I made two different images for Icon.png and Icon@2x.png and it’s icon.png that is on my device.
My config.lua is very simple and I use
imageSuffix = {
["@2x"] = 1.8,
}
My build settings is the default one :
[code]
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings = {
orientation = {
default = “portrait”,
–supported = { “landscapeLeft”, “landscapeRight”}
},
iphone = {
plist = {
UIStatusBarHidden = true,
UIPrerenderedIcon = true, – set to false for “shine” overlay
UIApplicationExitsOnSuspend = false,
CFBundleIconFile=“Icon.png”,
CFBundleiconfiles =
{
“Icon.png”,
“Icon@2x.png”
},
}
},
–[[ For Android:
androidPermissions = {
“android.permission.INTERNET”,
},
]]–
}[/code]
Any idea ? [import]uid: 9328 topic_id: 34759 reply_id: 334759[/import]