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
I noticed that CookieSyncManager is still in use to sync the cookies in BaseFacebookWebViewActivity.java. However, this class has been deprecated since API 21 and is not guaranteed to work for later API levels. (Reference: Android API Guide)
After API 21, CookieManager should work fine with itself and CookieManager.flush() is a replacement for CookieSyncManager.sync().
I also found some related discussions on StackOverflow.
Hope this can help.
The text was updated successfully, but these errors were encountered:
Hi,
I noticed that CookieSyncManager is still in use to sync the cookies in BaseFacebookWebViewActivity.java. However, this class has been deprecated since API 21 and is not guaranteed to work for later API levels. (Reference: Android API Guide)
After API 21, CookieManager should work fine with itself and CookieManager.flush() is a replacement for CookieSyncManager.sync().
I also found some related discussions on StackOverflow.
Hope this can help.
The text was updated successfully, but these errors were encountered: