There is a bunch of history to explain here, but first…
Your existing Icons and code in build.settings will still work. You do not have to make any changes.
Now for the history. In the beginning Apple just looked for Icon.png. You didn’t need anything more. When the Retina phones came out, you needed two icons: Icon.png and Icon@2x.png. Again Apple just found these. As the iPad came out, then the Retina iPad, the increase in icons required a different strategy. Then iOS 7 came and the sizes of the icons change. The iPhone 6/7 and 6/7 plus changed the sizes again.
Some where in there, Apple allowed the file names to be anything you liked, but you had to list the names in the info.plist (i.e. from our build.settings). All of these changes are tied to iOS versions. As long as we support older versions of iOS we have to recommend your icons work for all versions.
Since iOS 6 still had some dependency on files being named a certain way, we were forced to recommend the naming scheme we had even though with later versions of iOS the name wasn’t relevant. Sometime between the previous public build and the current public build we dropped support for iOS 6 and 7. Now that iOS 8 is the minimum, we are no longer constrained by icons that have specific names and we were able to eliminate all the icons tied to iOS 6 and earlier in size.
The result is you need fewer icons. The naming scheme is flexible and we feel that Icon-xxx.png is much easier to use and for those making tools to auto-create them, it will be easier to script.
If you’re using a version of Corona SDK (latest daily build or later), there isn’t much of a reason to maintain the old icon scheme. iOS 10 did not bring any new icons.
Now for UILaunchImages, dropping iOS 6 and 7 allows us to now use the Xcode “Storyboard” method of doing launch images. Apple didn’t support this until iOS 8. When I say “Storyboard”, I’m not referring to our old scene manager, but Xcode’s way of designing screens. The huge UILaunchImage table in build.settings can be replaced with a single line. The bazillion Default*****.png files are replaced by three images and an extra file produced by Xcode.
See: https://docs.coronalabs.com/guide/distribution/launchFile/index.html
With iOS 8 we can do a serious cleanup on the folder holding main.lua.
Rob