I have found that CookieSyncManager is still in use in WebviewFragment and OpenIDActivity. According to the doc, it is deprecated since Lollipop so it may not guarantee to work.
A better implementation may be to use CookieSyncManager on lower API levels and use APIs of CookieManager to manage the cookies. I found a reference post in stack overflow here
Hi,
I have found that CookieSyncManager is still in use in WebviewFragment and OpenIDActivity. According to the doc, it is deprecated since Lollipop so it may not guarantee to work.
A better implementation may be to use CookieSyncManager on lower API levels and use APIs of CookieManager to manage the cookies. I found a reference post in stack overflow here
Thx.