You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Open the Touch Example App
2. Validate for App Store submission
3. Validator responds with - iTunes Store operation failed. The app references
non-public selectors ... setCookies. See attached image.
What version of the product are you using? On what operating system?
The latest (r124)
Please provide any additional information below.
The following fixes the validation, but evidently will limit functionality if
it breaks any sort of NSHTTPCookieStorage logic.
Changing GTMHTTPFetcher.h:396
from:
- (void)setCookies:(NSArray *)newCookies;
to:
- (void)setCookiesNow:(NSArray *)newCookies;
& changing GTMHTTPFetcher.m:983
from:
[cookieStorage_ setCookies:cookies];
to;
[cookieStorage_ setCookiesNow:cookies];
Original issue reported on code.google.com by [email protected] on 29 Sep 2014 at 12:16
Original issue reported on code.google.com by
[email protected]
on 29 Sep 2014 at 12:16Attachments:
The text was updated successfully, but these errors were encountered: