Oh and I think they’re running iOS 8 on their iPhone 5’s if that helps.
– Supported values for orientation: – portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { plugins = { [“plugin.google.play.services”] = { publisherId = “com.coronalabs” }, [“plugin.adbuddiz”] = { publisherId = “com.adbuddiz” }, }, orientation = { default = “landscapeRight”, --initial launch orientation --content = “landscapeRight”, --locked orientation of the Corona stage, independent of Native UI elements (iOS only) supported = {“landscapeRight”, “landscapeLeft”}, --table of allowed options for auto-orientation }, iphone = { plist = { --CFBundleDisplayName = “Pyramid Jumble”, --CFBundleName = “Pyramid Jumble”, CFBundleShortVersionString = “1.6”, CFBundleLocalizations = { “en”, “sv”, }, UIAppFonts = { “geosanslight.ttf” }, UIStatusBarHidden = true, UIPrerenderedIcon = false, – set to false for “shine” overlay --UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend CFBundleIconFile = “Icon.png”, CFBundleIconFiles = { “Icon.png”, “Icon@2x.png”, “Icon-60.png”, “Icon-60@2x.png”, “Icon-60@3x.png”, “Icon-72.png”, “Icon-72@2x.png”, “Icon-76.png”, “Icon-76@2x.png”, “Icon-Small-40.png”, “Icon-Small-40@2x.png”, “Icon-Small-40@3x.png”, “Icon-Small-50.png”, “Icon-Small-50@2x.png”, “Icon-Small.png”, “Icon-Small@2x.png”, “Icon-Small@3x.png”, }, --launch image files table UILaunchImages = { { – iPhone 4 LandscapeLeft [“UILaunchImageMinimumOSVersion”] = “7.0”, [“UILaunchImageName”] = “Default”, [“UILaunchImageOrientation”] = “LandscapeLeft”, [“UILaunchImageSize”] = “{320, 480}” }, { – iPhone 4 LandscapeRight [“UILaunchImageMinimumOSVersion”] = “7.0”, [“UILaunchImageName”] = “Default”, [“UILaunchImageOrientation”] = “LandscapeRight”, [“UILaunchImageSize”] = “{320, 480}” }, { – iPhone 5 LandscapeLeft [“UILaunchImageMinimumOSVersion”] = “7.0”, [“UILaunchImageName”] = “Default-568h”, [“UILaunchImageOrientation”] = “LandscapeLeft”, [“UILaunchImageSize”] = “{320, 568}” }, { – iPhone 5 LandscapeRight [“UILaunchImageMinimumOSVersion”] = “7.0”, [“UILaunchImageName”] = “Default-568h”, [“UILaunchImageOrientation”] = “LandscapeRight”, [“UILaunchImageSize”] = “{320, 568}” }, { – iPad LandscapeLeft [“UILaunchImageMinimumOSVersion”] = “7.0”, [“UILaunchImageName”] = “Default-Landscape”, [“UILaunchImageOrientation”] = “LandscapeLeft”, [“UILaunchImageSize”] = “{768, 1024}” }, { – iPad LandscapeRight [“UILaunchImageMinimumOSVersion”] = “7.0”, [“UILaunchImageName”] = “Default-Landscape”, [“UILaunchImageOrientation”] = “LandscapeRight”, [“UILaunchImageSize”] = “{768, 1024}” }, { – iPhone 6 LandscapeLeft [“UILaunchImageMinimumOSVersion”] = “8.0”, [“UILaunchImageName”] = “Default-667h”, [“UILaunchImageOrientation”] = “LandscapeLeft”, [“UILaunchImageSize”] = “{375, 667}” }, { – iPhone 6 LandscapeRight [“UILaunchImageMinimumOSVersion”] = “8.0”, [“UILaunchImageName”] = “Default-667h”, [“UILaunchImageOrientation”] = “LandscapeRight”, [“UILaunchImageSize”] = “{375, 667}” }, { – iPhone 6 Plus LandscapeLeft [“UILaunchImageMinimumOSVersion”] = “8.0”, [“UILaunchImageName”] = “Default-Landscape-736h”, [“UILaunchImageOrientation”] = “LandscapeLeft”, [“UILaunchImageSize”] = “{414, 736}” }, { – iPhone 6 Plus LandscapeRight [“UILaunchImageMinimumOSVersion”] = “8.0”, [“UILaunchImageName”] = “Default-Landscape-736h”, [“UILaunchImageOrientation”] = “LandscapeRight”, [“UILaunchImageSize”] = “{414, 736}” }, }, --[[ – iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { “fbXXXXXXXXXXXXXX”, – example scheme for facebook “coronasdkapp”, – example second scheme } } } ]]-- } }, android = { usesPermissions = { “android.permission.INTERNET”, “android.permission.ACCESS_NETWORK_STATE”, – Optional permission, add it only if you will send the user’s geo location --“android.permission.ACCESS_FINE_LOCATION”, --“android.permission.ACCESS_COARSE_LOCATION”, }, }, excludeFiles = { – Exclude all files at paths which end with “secret.txt”: --all = { “*secret.txt” }, – Exclude all Android icon files and .ogg files in the “music” directory: iphone = { “Icon-*dpi.png” }, – Exclude iOS “retina” image files and .m4a files in the “music” directory: android = { “Default*.png”, “Icon.png”, “Icon-6*.png”, “Icon-7*.png”, “Icon-small*.png”, “*@2x.png”, “*@3x.png”, }, }, }