Following up on Gmail API iOS in Xcode 7, Swift 2, I followed the directions, but then ran into the problems listed here: https://groups.google.com/forum/#!topic/google-api-objectivec-client/Eq2yW8KdjRU. They point out a few things that are wrong with the Quickstart instuctions and I (as they did) worked thru them as best we could. In the end, the remaining problem is linking, which looks like:
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_GTLObject", referenced from:
_OBJC_CLASS_$_GTLGmailDraft in GTLGmail_Sources.o
_OBJC_CLASS_$_GTLGmailHistoryLabelAdded in GTLGmail_Sources.o
_OBJC_CLASS_$_GTLGmailHistoryLabelRemoved in GTLGmail_Sources.o
_OBJC_CLASS_$_GTLGmailMessage in GTLGmail_Sources.o
_OBJC_CLASS_$_GTLGmailHistoryMessageAdded in GTLGmail_Sources.o
_OBJC_CLASS_$_GTLGmailHistoryMessageDeleted in GTLGmail_Sources.o
_OBJC_CLASS_$_GTLGmailHistory in GTLGmail_Sources.o
...
"_OBJC_CLASS_$_GTLQuery", referenced from:
_OBJC_CLASS_$_GTLQueryGmail in GTLGmail_Sources.o
(maybe you meant: _OBJC_CLASS_$_GTLQueryGmail)
"_OBJC_CLASS_$_GTLService", referenced from:
_OBJC_CLASS_$_GTLServiceGmail in GTLGmail_Sources.o
(maybe you meant: _OBJC_CLASS_$_GTLServiceGmail)
"_OBJC_CLASS_$_GTMOAuth2ViewControllerTouch", referenced from:
type metadata accessor for __ObjC.GTMOAuth2ViewControllerTouch in ViewController.o
"_OBJC_METACLASS_$_GTLObject", referenced from:
_OBJC_METACLASS_$_GTLGmailDraft in GTLGmail_Sources.o
_OBJC_METACLASS_$_GTLGmailHistory in GTLGmail_Sources.o
_OBJC_METACLASS_$_GTLGmailHistoryLabelAdded in GTLGmail_Sources.o
_OBJC_METACLASS_$_GTLGmailHistoryLabelRemoved in GTLGmail_Sources.o
_OBJC_METACLASS_$_GTLGmailHistoryMessageAdded in GTLGmail_Sources.o
_OBJC_METACLASS_$_GTLGmailHistoryMessageDeleted in GTLGmail_Sources.o
_OBJC_METACLASS_$_GTLGmailLabel in GTLGmail_Sources.o
...
In the SO thread above I first referenced, it is suggested that a new Gmail SDK corrects these problem. I re-pulled everything two days ago but still have the linking errors.
So I am not sure how to install the new version of the SDK as mentioned ... can someone point me as to which SDK I am updating and how to do it? Thanks!