android-cookie-store icon indicating copy to clipboard operation
android-cookie-store copied to clipboard

Android InMemory and persistent Cookie Store for HttpURLConnection and OkHttp, with extensions to easily sync cookies in Android WebViews.

Results 9 android-cookie-store issues
Sort by recently updated
recently updated
newest added

Bumps [gson](https://github.com/google/gson) from 2.9.0 to 2.9.1. Release notes Sourced from gson's releases. Gson 2.9.1 Make Object and JsonElement deserialization iterative rather than recursive (#1912) Added parsing support for enum that...

dependencies

Bumps [okhttp](https://github.com/square/okhttp) from 4.9.3 to 4.10.0. Changelog Sourced from okhttp's changelog. Change Log Version 5.0.0-alpha.8 2022-06-08 Fix: Change how H2_PRIOR_KNOWLEDGE works with HTTP proxies. Previously OkHttp assumed the proxy itself...

dependencies

` java.util.ArrayList$Itr.next (ArrayList.java:860) net.gotev.cookiestore.SharedPreferencesCookieStore.add (SharedPreferencesCookieStore.kt:107) java.net.CookieManager.put (CookieManager.java:360) net.gotev.cookiestore.WebKitSyncCookieManager.put (WebKitSyncCookieManager.kt:37) `

First, thanks for your work. I love this repo. I have a question: Can we inject cookies from `android.webkit.CookieManager` (cookies was made by Android Webview) into every request of OkHttp?...

Bumps [gson](https://github.com/google/gson) from 2.9.0 to 2.10.1. Release notes Sourced from gson's releases. Gson 2.10.1 This is technically a minor release rather than a patch release because there is one small...

dependencies

``` init { handleExceptions { android.webkit.CookieManager.getInstance().setAcceptCookie(true) } } ``` The default value of setAcceptCookie is true. do we need to still set this? we are facing ANR in production for...

I am unable to access secure cookies. So please provide some details how to access secure cookies

init { handleExceptions { android.webkit.CookieManager.getInstance().setAcceptCookie(true) } } The default value of setAcceptCookie is true. removing it since cookiemanager instance creates ANR in few devices issue discussion thread https://github.com/gotev/android-cookie-store/issues/38#issue-2284878355

A ConcurrentModificationException is being thrown when iterating over a list that's being modified simultaneously. The issue is in `SharedPreferencesCookieStore.add() at line 56`—the `uriIndex` map is being modified while it's being...