0

Possible Duplicate:
Support both armv6 and iOS 6 in an App Store app?

Up to now, I've been building my app using "armv6 armv7" and iOS 4.2+.

With Xcode 4.5x and iOS 6, it seems I can't do this anymore. I've tried adding "armv6" to the existing "armv7" and "armv7s" and I've tried removing "armv7s" but I still get warnings when I Analyze:

"warning: no rule to process file '$(PROJECT_DIR)/MyApp/main.m' of type sourcecode.c.objc for architecture armv6"

Plus iOS 4.2 no longer shows for "Depolyment Target"

Is there a way to build my app for iOS 4.2 - 6 ?

Community
  • 1
  • 1
wayneh
  • 4,393
  • 9
  • 35
  • 70
  • There are many questions about this on StackOverflow (similar: http://stackoverflow.com/q/12574851/558933). You need to install a previous version of Xcode . See the following question about multiple XCodes (there are others) http://stackoverflow.com/q/11001069/558933. – Robotic Cat Oct 07 '12 at 18:07
  • Yes, there are similar questions but a lot are confusing. I resolved this by downloading XCode 4.4.1 – wayneh Oct 07 '12 at 19:42

1 Answers1

2

No. You can do 4.3 - 6, or 4.2 and 6 in a separate app. There is no way of supporting 4.3 - 6 in one app.

Scott Berrevoets
  • 16,921
  • 6
  • 59
  • 80