I just updated my iPhone 4S software to iOS 7 Beta 2 while I was in the middle of putting the final touches on a new app (Phonegap).. not a good idea!
After it was d
Because my lib.a is for only armv7
what i did was
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
"ARCHS[sdk=iphoneos*]" = (
armv7s,
armv7,
);
"ARCHS[sdk=iphoneos6.*]" = (
armv7s,
armv7,
);
"ARCHS[sdk=iphoneos7.*]" = (
armv7,
armv7s,
);
it was build and archived fine
hope it helps