Reputation: 3854
I am about to upload my very first app and I changed the deployment target 30 ios 3.0 and I am getting a warning that I have no idea what to with. If anyone could help me out, it would be much appreciated since I am basically done! (I hope). Its talking about some arv6 architectures and I don't know what that means.
Thanks!
[BWARN]warning: iPhone apps with a deployment target lower than 4.3 should include an armv6 architecture (current IPHONEOS_DEPLOYMENT_TARGET = "3.0", ARCHS = "armv7").
warning: iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6 (-19033)
Upvotes: 1
Views: 316
Reputation: 75058
Better question - why do you feel you need to support iOS3.x?
At this point you should switch to ARC and support only 4.x devices or greater, unless there is an absolutely compelling need. Remember that percentage wise only a tiny number of devices at this point are restricted to iOS3.
Upvotes: 1
Reputation: 9149
In your project -> build settings -> architectures, try adding an arm6 architecture
See this answer, it has a step by step process of how to add an architecture "Warning: iPhone apps should include an armv6 architecture" even with build config set
Upvotes: 1