can we get a typical build.settings

Hello,

Corona people, can you make a typical build.settings file with the correct value needed to build the app.

I get some error I do not understand :
[bash]warning: There is no dwarfdump executable defined. (-19035)[/bash]

and
[bash]warning: There is no codesign_wrapper executable. Please reinstall the Xcode developer tools. (-19058)[/bash]
and

[bash]warning: This bundle is invalid. The application-identifier entitlement is not formatted correctly; it should contain your 10-character App ID Seed, followed by a dot, followed by your bundle identifier: 454B2HC4VK.insights (-19054)[/bash]

Can you help ? [import]uid: 5578 topic_id: 24315 reply_id: 324315[/import]

If you open the CoronaSDK folder on your computer, then go SampleCode and pick a random project from in there you can copy the build.settings directly into your app.

That will be a standard build.settings file.

Depending on your setup this thread may also be of use: http://developer.anscamobile.com/forum/2012/02/19/mountain-lion-compatibility-post

Peach :slight_smile: [import]uid: 52491 topic_id: 24315 reply_id: 98219[/import]

The issues you are seeing however are not build.settings related.

They are a problem with your Xcode setup and potentially a problem with a provisioning profile (last problem if you’re using the wildcard provisioning profile)

Here is the build.settings file for a game that live in all 4 major app stores:

settings = { iphone = { plist= { UIInterfaceOrientation = "UIInterfaceOrientationLandscapeLeft", UISupportedInterfaceOrientations = { "UIInterfaceOrientationLandscapeLeft", "UIInterfaceOrientationLandscapeRight" }, MinimumOSVersion="4.3", UIApplicationExitsOnSuspend = false, UIPrerenderedIcon="YES", UIStatusBarHidden=true, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png" , "Icon@2x.png" , "Icon-72.png" , "Icon-Small-50.png" , "Icon-Small.png" , "Icon-Small@2x.png" }, UIAppFonts = { "actionj.ttf", "SAF.ttf", }, }, components = {}, }, orientation = { default = "landscapeRight", supported = { "landscapeRight" }, }, } [import]uid: 19626 topic_id: 24315 reply_id: 98330[/import]

As Rob said the errors you currently have are linked to an Xcode issue although if running Mountain Lion then they are explained in the link from my previous post.

Very thorough build.settings file example, Rob :slight_smile: [import]uid: 52491 topic_id: 24315 reply_id: 98429[/import]

Ok, thanks a lot.

Frédéric
[import]uid: 5578 topic_id: 24315 reply_id: 98469[/import]