4

Over the weekend I upgraded my version of xcode to the newest version, and the latest SDK (iOS 6.0). This morning when I went into it to take a look at how our app had faired in the transition, I noticed something strange. I get errors such as:

uknown type 'GDataOAuthentication' for

@property (nonatomic, retain, readonly) GDataOAuthAuthentication *authentication;

in GDataOAuthViewControllerTouch.h

This was working just fine under the last version. Any ideas as to what needs to be changed?

Rahul Patel
  • 5,858
  • 6
  • 46
  • 72
Ryan
  • 193
  • 2
  • 2
  • 14

1 Answers1

2

Try changing the Valid Architecture from arm7s to arm7. Arm7s is the new architecture for iPhone 5 and could be the issue causing GData as well as other libraries.

Also is this running on the simulator or phone? Mine compiles on the phone not on simulator so still an issue.

Wes
  • 419
  • 1
  • 4
  • 18