Thanks for taking a look Rob 
settings = { excludeFiles = { -- Exclude all files at paths which end with "secret.txt": all = { "AAANotes.txt", "Icon-16.png", "Icon-24.png", "Icon-32.png", "Icon-64.png", "Icon-120.png", "Icon-152.png", "Icon-Amazon.png", "iTunesArtwork.png", "iTunesArtwork@2x.png", "upload.png" }, -- Exclude all Android icon files and .ogg files in the "music" directory: iphone = { "Icon-\*dpi.png", "movie54464CB4\*.mov", "icon54464CB4\*.jpg" }, -- Exclude iOS "retina" image files and .m4a files in the "music" directory: android = { "Default-568h", "Icon.png", "Icon-40.png", "Icon-40@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.png", "Icon-Small-50.png", "Icon-Small@2x.png", "Icon-Small@3x.png", "Icon@2x.png", "Image@1x.png", "Image@2x.png", "Image@3x.png", "movie54464CB4\*.mov", "icon54464CB4\*.jpg" } }, build = { neverStripDebugInfo = true }, plugins = { --key is the name passed to Lua's 'require()' ["CoronaProvider.native.popup.social"] = { --required publisherId = "com.coronalabs", }, ["plugin.openssl"] = { -- required publisherId = "com.coronalabs", }, ["facebook"] = { publisherId = "com.coronalabs", supportedPlatforms = {android = true, ["iphone-sim"] = true }, }, ["plugin.zip"] = { -- required publisherId = "com.coronalabs", }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, }, orientation = { default = "portrait", supported = { "portrait", }, }, iphone = { plist = { UILaunchStoryboardName = "LaunchScreen", UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay UIApplicationExitsOnSuspend = false, UIAppFonts = { "ArialMT.ttf", "Arial-ItalicMT.ttf", "Arial-BoldMT.ttf", }, FacebookAppID = "xxxxxxx", CFBundleURLTypes = { { CFBundleURLSchemes = { "xxxxxxxx", } } }, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { -- --USE THE GENERATOR AT: http://icon.angrymarmot.org/ --PhotoShop Total Generator "Icon-60@3x.png", -- 180x180 "Icon-76@2x.png", -- 152x152 "Icon-72@2x.png", -- 144x144 App Icon iPad Retina (iOS 6.1 and prior) --Icon-xxhdpi.png -- 144x144 "Icon-Small-40@3x.png", -- 120x120 "Icon-60@2x.png", -- 120x120 App Icon iPhone Retina "Icon@2x.png", -- 114x114 "Icon-Small-50@2x.png", -- 100x100 --Icon-xhdpi.png -- 96x96 "Icon-Small@3x.png", -- 87x87 "Icon-40.png", -- 40x40 Spotlight iPhone & iPad Retina "Icon-40@2x.png", -- 80x80 Spotlight iPhone & iPad Retina --"Icon-40@3x.png", -- 120x120 Spotlight iPhone & iPad Retina "Icon-76.png", -- 76x76 App Icon iPad Non-Retina "Icon-72.png", -- 72x72 App Icon iPad Non-Retina (iOS 6.1 and prior) --Icon-hdpi.png -- 72x72 "Icon-60.png", -- 60x60 App Icon iPhone Non-Retina [edited] "Icon-Small.png", -- 29x29 "Icon-Small@2x.png", -- 58x58 "Icon.png", -- 57x57 "Icon-Small-50.png", -- 50x50 --Icon-mdpi.png -- 48x48 "Icon-40.png", -- 40x40 Spotlight iPad Retina (iOS 6.1 and prior) --Icon-ldpi.png -- 36x36 --"iTunesArtwork", -- 1024x1024 ... dont really need to include this }, --launch image files table UILaunchImages = { { --iPhone 4 ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 480}" }, { --iPhone 5 ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 568}" }, { --iPad portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Portrait", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{768, 1024}" }, -- { --iPhone 6 -- ["UILaunchImageMinimumOSVersion"] = "8.0", -- ["UILaunchImageName"] = "Default-667h", -- ["UILaunchImageOrientation"] = "Portrait", -- ["UILaunchImageSize"] = "{375, 667}" -- }, -- { --iPhone 6 Plus portrait -- ["UILaunchImageMinimumOSVersion"] = "8.0", -- ["UILaunchImageName"] = "Default-736h", -- ["UILaunchImageOrientation"] = "Portrait", -- ["UILaunchImageSize"] = "{414, 736}" -- }, }, CFBundleLocalizations = { "en", "es", "fr" }, CFBundleShortVersionString = "1.800", } }, android = { largeHeap = true, versionCode = "1800", installLocation = "auto", --preferExternal", usesExpansionFile = false, usesPermissions = { "com.android.vending.BILLING", "android.permission.CAMERA", "android.permission.INTERNET", "com.android.vending.CHECK\_LICENSE", "android.permission.WRITE\_EXTERNAL\_STORAGE", "android.permission.READ\_PHONE\_STATE" }, usesFeatures = { { name = "android.hardware.camera", required = false }, { name = "android.hardware.camera.front", required = false }, }, }, androidPermissions = { -- "android.permission.ACCESS\_FINE\_LOCATION", "android.permission.INTERNET", "android.permission.CAMERA", "android.permission.WRITE\_EXTERNAL\_STORAGE", -- "android.permission.VIBRATE", -- "android.permission.READ\_PHONE\_STATE", "android.permission.ACCESS\_NETWORK\_STATE", }, }