GData iPhone archive error

Following the instructions here: http://hoishing.wordpress.com/2011/08/23/gdata-objective-c-client-setup-in-xcode-4/
I added GData to my iOS 5 project. When it's time to archive the project I get the following error:

Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_GDataServiceGoogleYouTube", referenced from:
      objc-class-ref in DataManager.o
  "_OBJC_CLASS_$_GDataEntryYouTubeVideo", referenced from:
      objc-class-ref in DataManager.o
      objc-class-ref in ListController.o
      objc-class-ref in ShareController.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I checked the build settings for GData.xcodeproj -> GDataTouchStaticLib, and this is what I set for them in this figure :) enter image description here

Any help is appreciated to help archive my project.

+5
source share
1 answer

You linked libraries incorrectly. Be sure to carefully follow the directions when it comes to adding paths to the library. For more information, see Undefined Symbols for armv7 Architecture .

0

All Articles