Hi all,
I just upgraded xcode and corona to the latest public releases (v9 and 2017-3135) and now my app is showing a wide bar at the top and bottom of the screen when viewed as an iPhone 6 (sim or device). In Corona, it looks fine but not in xcode or the phone itself. Has anyone else noticed this? I have several apps that have used the same code in the config file for a number of years with no issues:
content = {
width = aspectRatio > 1.5 and 400 or math.ceil( 600 / aspectRatio ),
height = aspectRatio < 1.5 and 600 or math.ceil( 400 * aspectRatio ),
scale = “letterBox”,
fps = 60,
imageSuffix = {
["@2x"] = 1.5,
["@4x"] = 3.0,
},
},