Sure, here you go Rob!
-- -- For more information on build.settings see the Corona SDK Build Guide at: -- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html -- settings = { splashScreen = { enable = true, image = "graphic/splashsquare.jpg" }, plugins = { ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["plugin.appodeal"] = { publisherId = "com.coronalabs" }, ["plugin.gpgs"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, ["iphone-sim"]=true } }, }, orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "portrait", supported = { "portrait", } }, excludeFiles = { -- Include only the necessary icon files on each platform iphone = { "Icon-\*dpi.png", }, android = { "Icon.png", "Icon-Small-\*.png", "Icon\*@2x.png","LaunchScreen.storyboardc", }, }, -- -- iOS Section -- iphone = { xcassets = "Images.xcassets", plist = { NSAppTransportSecurity = { NSAllowsArbitraryLoads=true, NSExceptionDomains = { ["redactedname.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true, }, ["google.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true, }, }, }, UILaunchStoryboardName = "LaunchScreen", UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend UIFileSystem = false, CFBundleLocalizations = { "en", --English "de", --German "zh", --Chinese "ja", --Japanese "ko", --Korean "fr", --French "it", --Italian "es", --Spanish "pt", --Portugese "ru", --Russian }, CFBundleDisplayName = "Redacted Name!", CFBundleName = "Redacted Name!", --[[-- iOS app URL schemes: FacebookAppID = "555461954831062", CFBundleURLTypes = { { CFBundleURLSchemes = { "fb555461954831062", -- replace XXXXXXXXX with your Facebook appId } } } --]] } }, -- -- Android Section -- android = { --facebookAppId = "555461954831062", usesPermissions = { "android.permission.INTERNET", "com.android.vending.BILLING", "android.permission.VIBRATE", "com.android.vending.CHECK\_LICENSE", "android.permission.WRITE\_EXTERNAL\_STORAGE", }, googlePlayGamesAppId = "792877554387", }, }