Here is a typical build.settings file for iOS apps (I didn’t include any android bits to keep it simple for now)
settings = { orientation = { default = "landscapeRight", supported = { "landscapeRight", "landscapeLeft", } }, iphone = { plist = { UIStatusBarHidden = true, UIPrerenderedIcon = true, -- set to false for "shine" overlay UIApplicationExitsOnSuspend = false, UIStatusBarHidden=true, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-50.png", "Icon-50@2x.png", "Icon-small.png", "Icon-small@2x.png" }, } }, }