Yes, you are right. A black Default-658h is now added automatically if you don’t provide one.
So, I finished here my tests on iPhone 5 & 6 (didn’t test on iPhone 6+) regarding Launch Images and here are my conclusions:
Tall mode activation:
In recent daily builds (2443 or after by sure), you don’t need to provide any specific assets to activate tall mode on iPhone5/6. UPDATE: If you specify the iPhone 6 UILaunchImages on the build.settings, you will have to add the iPhone 5 as well, or the tall mode will not be activated.
Custom Launch Images:
iPhone 5: Just add your Default-568h@2x.png to your project root directory. No need to do anything else. UPDATE: If you specify the iPhone 6 UILaunchImages on the build.settings, you need to add the iPhone 5 as well, or the tall mode and iPhone5 Launch image will not be used.
iPhone 6: Add your Default-667h@2x.png to your project root directory and specify the following in the iphone->plist on the build.settings (Adapt the UILaunchImageOrientation for you case) :
--launch image files table UILaunchImages = { { --iPhone 6 ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{375, 667}" }, },
If you do not specify the above entry on your plist, the iPhone 6 will use the iPhone5 launch image (Default-568h@2x.png). It will scale up the image keeping the aspect ratio (i.e, it will not be stretched to fit the whole screen) and it will entered on the screen (so, you would have little margins around the launch Image). Update: Doing more tests, it appears that the launch image will take the full screen.
iPhone 6+: I did not tested on that device. I Believe it will require similar structure of iPhone 6 (add the correspondent Default launch image and specify it on the buid.settings. - More info here: http://docs.coronalabs.com/guide/distribution/buildSettings/index.html) %C2%A0)
That is it. That is what I saw here during my tests (Corona daily build 2446 - building target 7.1)
UPDATE: SUMMARY: Just follow the http://docs.coronalabs.com/guide/distribution/buildSettings/index.html%C2%A0) instructions regarding Launch Images that you cannot go wrong.