Greg,
Much thanks for the changes. The notifications are working well in my
case.
I did run into one issue when GTM_OAUTH2_SKIP_GOOGLE_SUPPORT is true.
The finishSignInWithError: method is not defined. Here is a patch that
resolved the issue for me:
Index: Irunurun/Third-Party/GTM-OAuth2/GTMOAuth2SignIn.m
===================================================================
--- Irunurun/Third-Party/GTM-OAuth2/GTMOAuth2SignIn.m (date
1318416958000)
+++ Irunurun/Third-Party/GTM-OAuth2/GTMOAuth2SignIn.m (revision )
@@ -596,11 +596,11 @@
[self finishSignInWithError:error];
}
+#endif // !GTM_OAUTH2_SKIP_GOOGLE_SUPPORT
+
- (void)finishSignInWithError:(NSError *)error {
[self invokeFinalCallbackWithError:error];
}
-
-#endif // !GTM_OAUTH2_SKIP_GOOGLE_SUPPORT
// convenience method for making the final call to our delegate
- (void)invokeFinalCallbackWithError:(NSError *)error {