I have an Android app that makes HTTP calls. The service stores cookies in the CookieStore. I am trying to find a way to keep CookieStore, but I have not succeeded. I do not want the user to log in every time to get a new CookieStore.
I tried using SharedPreferences to store a CookieStore as a string, but I cannot rebuild a CookieStore with a String.
Has anyone else been successful in maintaining CookieStore?
java android cookies
jlim
source share