Receiving weird build error?! Please help!

I am receiving this after the build completes…

warning: iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6 (-19033)
I believe that this has to do with the minimum os version.

My build is very recent: Version 2012.730 (2012.12.8)

Thanks! [import]uid: 86879 topic_id: 20921 reply_id: 320921[/import]

Are you specifying a minimum OS version in your build.settings file? [import]uid: 19626 topic_id: 20921 reply_id: 82507[/import]

I am not…should I? what is the syntax and the min number?

THanks! [import]uid: 86879 topic_id: 20921 reply_id: 82509[/import]

Well my understanding with later builds, you should not need to specify a minimum OS and that warning was taken care of.

Try putting this in your plist {} array:

MinimumOSVersion=“4.3”,
[import]uid: 19626 topic_id: 20921 reply_id: 82510[/import]

well…Would that make my app incompatible with older iOS apps? (before 4.3?) [import]uid: 86879 topic_id: 20921 reply_id: 82524[/import]

As of Daily build 707:

iOS: Increased iOS minimum OS version to 4.3. (Dropping support for older iOS versions.)

http://developer.anscamobile.com/release/2011/707
So you have a choice, use a build before 707, or drop support for older devices.
[import]uid: 19626 topic_id: 20921 reply_id: 82533[/import]

settings =
{
orientation =
{
default = “portrait”,
supported = { “portrait” },
},

iphone =
{
components = { “openfeint” },

plist =
{
MinimumOSVersion=“4.3”,
UIAppFonts = { “handsean.ttf” },

UIStatusBarHidden=true,
UIApplicationExitsOnSuspend = false,
UIPrerenderedIcon = true,

},
}

}

<<<<<and I am still getting error!

this stinks. [import]uid: 86879 topic_id: 20921 reply_id: 82538[/import]

it doesn’t work with this build.settings. [import]uid: 86879 topic_id: 20921 reply_id: 82539[/import]