settings = { window = { resizable = true, titleText = { default = "myWindowsApp", }, enableMaximizeButton = true, enableMinimizeButton = true, enableCloseButton = true, minViewHeight = 768, minViewWidth = 1024, defaultViewHeight = 768, defaultViewWidth = 1024, }, plugins = { -- key is the name passed to Lua's 'require()' ["plugin.bit"] = { -- required publisherId = "com.coronalabs", }, }, iphone = { plist = { MinimumOsVersion="6.0", UIRequiredDeviceCapabilities={ "wifi", "armv7", }, UILaunchImages = { { --iPhone 4 ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 480}" }, { --iPhone 4 ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "Landscape", ["UILaunchImageSize"] = "{320, 480}" }, { --iPhone 5 ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 568}" }, { --iPhone 5 ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "Landscape", ["UILaunchImageSize"] = "{320, 568}" }, { --iPad landscape ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Landscape", ["UILaunchImageOrientation"] = "Landscape", ["UILaunchImageSize"] = "{768, 1024}" }, { --iPhone 6 ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{375, 667}" }, { --iPhone 6 ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "Landscape", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 Plus landscape ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-Landscape-736h", ["UILaunchImageOrientation"] = "Landscape", ["UILaunchImageSize"] = "{414, 736}" } }, UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight", UISupportedInterfaceOrientations = { "UIInterfaceOrientationLandscapeRight", "UIInterfaceOrientationLandscapeLeft", }, UIFileSharingEnabled = true, UIPrerenderedIcon = false, UIStatusBarHidden = false, UIApplicationExitsOnSuspend = true, CFBundleIconFile = "Icon-72.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-167.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" }, UIAppFonts = { "GillSans-Book.ttf", }, CFBundleURLTypes = { { CFBundleURLSchemes = { "myApp", } } } }, }, android = { usesPermissions = { "android.permission.INTERNET", }, }, orientation = { default = "landscapeRight", supported = { "landscapeRight","landscapeLeft", }, }, }