Search code examples
javascriptwebviewreact-native

How to clear react native webview cookies?


How to clear react native webview cookies?

When I re-open the page, it remembers my account if I logged in on a website. But I don't want that.

Can I do this by injecting javascript?


Solution

  • Solved by using this: https://github.com/react-native-community/react-native-cookies

    CookieManager.clearAll();