Medhi
Medhi

Reputation: 3235

Three20 and iOS 6 error compiling for armv7s architecture

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

Upvotes: 0

Views: 1151

Answers (1)

Cliff Ribaudo
Cliff Ribaudo

Reputation: 9039

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

Upvotes: 1

Related Questions