build.settings file

Hi Guys, 

I have the app fully built and just need to add the build.settings file now before submitting. I have read through the corona documentation but I do have a few questions about the build.settings file. 

  1. I have included code for iAd below. Is this correct method of doing so and must I sign up somewhere to access iAd or is simply including the code in the build.settings file enough. The app will be for iPhone and iPad, it only says iPhone in the iAd section. Will this be enough or must this be changed ? 

  2. Is this the correct method of setting up the icon files ? I have all this files included in the root folder of the app along with all the other media used in the game. Everything is in the one folder. 

Thank you

settings =  { orientation =  { default = "portrait" content = "portrait" supported = { "portrait", "portraitUpsideDown"}, },   iphone =     {         plist =         {             CFBundleDisplayName = "App Name here",             CFBundleName = "App Name here",               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-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"             },               UILaunchImages = {                 {  -- iPhone 4 Portrait                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default",                     ["UILaunchImageOrientation"] = "Portrait",                     ["UILaunchImageSize"] = "{320, 480}"                 },                 {  -- iPhone 4 LandscapeLeft                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default",                     ["UILaunchImageOrientation"] = "LandscapeLeft",                     ["UILaunchImageSize"] = "{320, 480}"                 },                 {  -- iPhone 4 LandscapeRight                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default",                     ["UILaunchImageOrientation"] = "LandscapeRight",                     ["UILaunchImageSize"] = "{320, 480}"                 },                 {  -- iPhone 5 Portrait                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default-568h",                     ["UILaunchImageOrientation"] = "Portrait",                     ["UILaunchImageSize"] = "{320, 568}"                 },                 {  -- iPhone 5 LandscapeLeft                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default-568h",                     ["UILaunchImageOrientation"] = "LandscapeLeft",                     ["UILaunchImageSize"] = "{320, 568}"                 },                 {  -- iPhone 5 LandscapeRight                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default-568h",                     ["UILaunchImageOrientation"] = "LandscapeRight",                     ["UILaunchImageSize"] = "{320, 568}"                 },                 {  -- iPad Portrait                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default-Portrait",                     ["UILaunchImageOrientation"] = "Portrait",                     ["UILaunchImageSize"] = "{768, 1024}"                 },                 {  -- iPad LandscapeLeft                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default-Landscape",                     ["UILaunchImageOrientation"] = "LandscapeLeft",                     ["UILaunchImageSize"] = "{768, 1024}"                 },                 {  -- iPad LandscapeRight                     ["UILaunchImageMinimumOSVersion"] = "7.0",                     ["UILaunchImageName"] = "Default-Landscape",                     ["UILaunchImageOrientation"] = "LandscapeRight",                     ["UILaunchImageSize"] = "{768, 1024}"                 },                 {  -- iPhone 6 Portrait                     ["UILaunchImageMinimumOSVersion"] = "8.0",                     ["UILaunchImageName"] = "Default-667h",                     ["UILaunchImageOrientation"] = "Portrait",                     ["UILaunchImageSize"] = "{375, 667}"                 },                 {  -- iPhone 6 LandscapeLeft                     ["UILaunchImageMinimumOSVersion"] = "8.0",                     ["UILaunchImageName"] = "Default-667h",                     ["UILaunchImageOrientation"] = "LandscapeLeft",                     ["UILaunchImageSize"] = "{375, 667}"                 },                 {  -- iPhone 6 LandscapeRight                     ["UILaunchImageMinimumOSVersion"] = "8.0",                     ["UILaunchImageName"] = "Default-667h",                     ["UILaunchImageOrientation"] = "LandscapeRight",                     ["UILaunchImageSize"] = "{375, 667}"                 },                 {  -- iPhone 6 Plus Portrait                     ["UILaunchImageMinimumOSVersion"] = "8.0",                     ["UILaunchImageName"] = "Default-736h",                     ["UILaunchImageOrientation"] = "Portrait",                     ["UILaunchImageSize"] = "{414, 736}"                 },                 {  -- iPhone 6 Plus LandscapeLeft                     ["UILaunchImageMinimumOSVersion"] = "8.0",                     ["UILaunchImageName"] = "Default-Landscape-736h",                     ["UILaunchImageOrientation"] = "LandscapeLeft",                     ["UILaunchImageSize"] = "{414, 736}"                 },                 {  -- iPhone 6 Plus LandscapeRight                     ["UILaunchImageMinimumOSVersion"] = "8.0",                     ["UILaunchImageName"] = "Default-Landscape-736h",                     ["UILaunchImageOrientation"] = "LandscapeRight",                     ["UILaunchImageSize"] = "{414, 736}"                 },             },         }     },       plugins =     {         ["CoronaProvider.ads.iads"] =         {             publisherId = "com.coronalabs",             supportedPlatforms = { iphone=true, ["iphone-sim"]=true },         },     },         }  

Your file looks correct.  You really should start development with one, but it’s technically not needed until you’re ready to build for device.  

Please read:  for more info.

Rob

Your file looks correct.  You really should start development with one, but it’s technically not needed until you’re ready to build for device.  

Please read:  for more info.

Rob