1

I am working on a project in Xcode 6.3.1 and wanted to submit a build on iTunes connect. Saw the steps from here and it said 'apps that include arm64 are required to include armv7 architecture'. Further research upon this issue from here made me set Build Active Architecture to No.

Now, my project has 6 build errors :

Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_AFJSONRequestSerializer", referenced from:
  objc-class-ref in AddViewController.o
"_OBJC_CLASS_$_AFHTTPRequestOperationManager", referenced from:
  objc-class-ref in AddViewController.o
"_OBJC_CLASS_$_FAKFontAwesome", referenced from:
  objc-class-ref in MyProfileViewController.o
  objc-class-ref in LikeTableViewCell.o
  objc-class-ref in DetailsViewController.o
  objc-class-ref in UserProfileViewController.o
  objc-class-ref in CTableViewCell.o
  objc-class-ref in TakeTheCViewController.o
  objc-class-ref in NTableViewCell.o
  ...
"_OBJC_CLASS_$_JGProgressHUD", referenced from:
  objc-class-ref in BaseViewController.o
"_OBJC_CLASS_$_DTAlertView", referenced from:
  objc-class-ref in MyProfileViewController.o
  objc-class-ref in CDetailsViewController.o
  objc-class-ref in CSolutionTableViewCell.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I have tried updating all these frameworks in my pods file but the errors remain. Tried to add them to my project by dragging the files to my project(which also prompted more errors because of duplicity that I managed to resolve by removing the frameworks from the Pods file) but then I will have to change all my import statements (if I'm right).

Any help with all this? And pardon me if I sound stupid, still new to iOS development.

Community
  • 1
  • 1
genaks
  • 757
  • 2
  • 10
  • 24

1 Answers1

0

Figured a way out.. Rather than setting Build Active Architecture to No , I removed all my devices from the machine and then archived the build. It went smoothly without any errors. But still, if anyone has a solution to the problem mentioned above, please post so others know.

genaks
  • 757
  • 2
  • 10
  • 24