Landscape Splash Screens not showing up on iPhone 4.

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]

Update: Adding @2x as an imagesuffix for 2x scaling (in addition to what I was already using) fixes Default-Landscape@2x.png on the corona simulator. Neither landscape image will load on the iPhone 4 though. [import]uid: 36054 topic_id: 10599 reply_id: 38534[/import]

Nevermind… It’s not supported. ugh. [import]uid: 36054 topic_id: 10599 reply_id: 38550[/import]

We can’t set Landscape Default.png for iPhone4? [import]uid: 4596 topic_id: 10599 reply_id: 40744[/import]

Nope. Tilt a portrait to landscape and do it that way. Landscape splash screens are only for the iPad.

[import]uid: 36054 topic_id: 10599 reply_id: 40745[/import]

I see what you’re saying, so the only option is saving the Default.png and Default@2x.png rotated by 90 degrees?

Thanks [import]uid: 4596 topic_id: 10599 reply_id: 40752[/import]

Yep. If the user happens to have the device in landscapeLeft when you decide on landscapeRight for the splash screen, or vice versa, it will just look like a quick flip when the splash disappears. That’s acceptable to Apple (and I am speaking from experience on this). [import]uid: 36054 topic_id: 10599 reply_id: 40755[/import]