Set cookies
Hi can we set cookies and modify it?
@reinaldoriant When you enable the WebView fallback feature you can store the navigation history and browser storage, like cookies on the device. An example for setting a cookie would be as follows : String cookieString = "cookie_name=cookie_value; path=/"; CookieManager.getInstance().setCookie(baseUrl, cookieString);
@reinaldoriant When you enable the WebView fallback feature you can store the navigation history and browser storage, like cookies on the device. An example for setting a cookie would be as follows : String cookieString = "cookie_name=cookie_value; path=/"; CookieManager.getInstance().setCookie(baseUrl, cookieString);
@Anuragkillswitch So for this, it is the same as the web view?