0

Do WebView instances in my process share cookies and cache with WebView instances created by other processes?

Say I have my website www.example.com, and there's a login page there. If the user logs into my site from the native browser app, then they come into my app later on where I have an embedded WebView instance, will their login cookies still be present? Or do they have to login again?

Thanks

user291701
  • 38,411
  • 72
  • 187
  • 285
  • Sounds like a possible answer may reside [here](http://stackoverflow.com/questions/1652850/android-webview-cookie-problem). – Mark May 26 '11 at 20:05

1 Answers1

0

The user will have to log in again, the cookies used by the native browser are not accessible to your webview.

GeekYouUp
  • 1,651
  • 11
  • 10