Trying to use a webview in Xamarin Forms project for iOS and Android.
In Android, upon navigating to a webpage that sets cookies, no cookies are set in the webview.
Due to this, cookies are not sent also along with the subsequent requests.
Do I need to do anything to enable the "normal" browser cookie behaviour for webview ?
Currently initializing as follows:
vw1.Cookies = New CookieContainer()
, where vw1 is the instance of WebView