我目前无法让我的应用删除浏览器 cookie 或某些特定 cookie。我发现的方法是实现以下内容:
CookieSyncManager.createInstance(this);
CookieManager cookieManager = CookieManager.getInstance();
cookieManager.removeAllCookie();
但什么都没有发生。使用 hasCookie() 方法的返回结果为 false。有没有办法从我的应用程序中删除 cookie?谢谢你的帮助!