0

I've been trying to solve this problem for hours and have googled everything about it but am not finding any solutions.

I've just updated to Xcode 4.5 with SDK 6 and my project wich use Three20 lib is not compiling.

It tells me that some class is not found or valid for armv7s

I've tried many things, any ideas??

Thanks

Cliff Ribaudo
  • 8,932
  • 2
  • 55
  • 78
Medhi
  • 2,656
  • 23
  • 16
  • Take a look at [this](http://stackoverflow.com/questions/12187148/three20-and-ios-6-not-working) answer. – ohr Oct 02 '12 at 21:43

1 Answers1

1

The Library your using is probably not setup to support iOS6 armv7s architecture. Check Three20 Lib site for an updated version of the library that DOES support armv7s. Or remove that setting from your project Target Build Settings.

Remove armv7s from the Architectures list. Delete all of them and simply type back armv7.

enter image description here

Cliff Ribaudo
  • 8,932
  • 2
  • 55
  • 78
  • Thanks for your answer but I cant run on my iOS 6 device if I do that, right ? – Medhi Sep 30 '12 at 10:42
  • 1
    Sure you can. I'm doing that on ALL my devices running iOS. I released production software to iOS Store that is running on 4.x - 6.0 and most hardware types including 5. No problems. – Cliff Ribaudo Sep 30 '12 at 11:25