Hi Folks,
I’m having trouble determining what the minimum iOS version will be for my app, especially if I do not specify ‘MinimumOSVersion’ in the build settings. I’m thinking it might be 6.0 according to this post:
https://coronalabs.com/blog/2014/04/25/changes-in-minimum-os-version-ios-6/
So then, if it is 6.0, would that mean I change “UILaunchImageMinimumOSVersion” to 6.0 in UILaunchImages?
– Launch image files table
UILaunchImages = {
{ – iPhone 4 LandscapeLeft
[“UILaunchImageMinimumOSVersion”] = “7.0”, – change to “6.0”?
[“UILaunchImageName”] = “Default”,
[“UILaunchImageOrientation”] = “LandscapeLeft”,
[“UILaunchImageSize”] = “{320, 480}”
},
– etc, etc, etc
Thanks for your help!