need help with Build.settings

I keep getting “There is an error in your build.settings.” I just started using the most current public release. My issues started after i implemented the Game Center plugin. What is causing this error, and how can i fix it?

-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "portrait", supported = { "portrait", "portraitUpsideDown"} }, plugins = ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, ["iphone-sim"]=true }, }, -- key is the name passed to Lua's 'require()' ["CoronaProvider.ads.iads"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, ["iphone-sim"]=true }, }, ["CoronaProvider.ads.admob"] = { publisherId = "com.coronalabs" }, }, iphone = { plist = { CFBundleShortVersionString = "1.0", CFBundleIconFiles = { "Icon-60.png", "Icon-60@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon.png", "Icon@2x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", }, UIAppFonts = { "Silom.ttf", "OldLondon.ttf", }, UIStatusBarHidden = true, UIPrerenderedIcon = false, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend --[[-- 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", }, }, }

Hi @kmk,

It looks like you didn’t open the “plugins” table with a bracket ({). Fix that and double-check everything in regards to proper table nesting, commas separating tables and items, etc.

Best regards,

Brent

Hi @kmk,

It looks like you didn’t open the “plugins” table with a bracket ({). Fix that and double-check everything in regards to proper table nesting, commas separating tables and items, etc.

Best regards,

Brent