Hello,
an ipad3 customer reported that she sees only the 1/4 bottom left part of the application.
screenshot from customer: screenshot
works fine on iphone3,iphone4,ipad,ipad2…
build.settings, config.lua:
[lua]if system.getInfo(“model”) == “iPad” or system.getInfo(“model”) == “iPad Simulator” then
– iPad
application =
{
content =
{
width = 768,
height = 1024,
scale = “letterbox”,
},
}
else
– iphone or iphone4
application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox”,
imageSuffix =
{
["@2x"] = 1.8,
},
},
}
end[/lua]
[lua]settings =
{
orientation =
{
default = “portrait”,
supported = { “portrait”, “portraitUpsideDown”, },
},
iphone =
{
plist =
{
UIPrerenderedIcon = true,
UIAppFonts = {
“Chalkboard.ttf”,
},
CFBundleDisplayName = “Math Minis”,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
“Icon-Small-50.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”
},
},
},
}[/lua]
has anybody esle experienced this?
I don’t remember the build number of corona sdk, app was published maybe 4-5 months ago…
[import]uid: 10077 topic_id: 25081 reply_id: 325081[/import]