This is driving me crazy! I am unable to get Default-Landscape.png or Default-Landscape@2x.png to show up on my iPhone 4 when building (this is my only device). Using the EXACT same image, but renaming it to Default.png or Default@2x.png will result in it showing up in portrait mode and stretched/distorted (that’s supposed to happen though since I fed it a mis-sized image. My App is landscape only, and once loaded properly supports only landscape left and landscape right. I just don’t understand what I could possibly be doing wrong.
Here’s the kicker: The Default-Landscape.png file works for the splash screen in the corona simulator, yet the Default-Landscape@2x.png file does not…
I just don’t get what I could be doing wrong…
Here is my build.settings file, it’s the only thing I think could maybe make a difference?
settings =
{
orientation =
{
default = "landscapeRight",
supported =
{
"landscapeLeft", "landscapeRight",
},
},
iphone =
{
plist =
{
UIRequiredDeviceCapabilities = "accelerometer",
UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight",
UISupportedInterfaceOrientations =
{
"UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"
},
UIApplicationExitsOnSuspend = true,
UIStatusBarHidden = true,
CFBundleIconFile = "Icon.png",
CFBundleIconFiles = {
"Icon.png",
"Icon@2x.png",
"Icon-72.png",
"Icon-Small-50.png",
"Icon-Small.png",
"Icon-Small@2x.png" },
},
},
}
Any help would be greatly appreciated! [import]uid: 36054 topic_id: 10599 reply_id: 310599[/import]