I created several launch images (as the project build setting tutorial suggests: http://docs.coronalabs.com/guide/distribution/buildSettings/index.html#launch-images)
Default.png 320 × 480
Default@2x.png 640 × 960
Default-568h@2x.png 640 × 1136
Default-Portrait.png 768 × 1024
Default-Portrait@2x.png 1536 × 2048
Default-Landscape.png 1024 × 768
Default-Landscape@2x.png 2048 × 1536
However, for many devices, when the app starts, the launch image does not fully fill the screen. I use white background, so it’s obvious that some area is black.
My config.lua is
content = { width = 320, height = 480, scale = "letterbox", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }
Do I miss some sizes for the launch image?