Cookie management with react native kinda is a pain because cookies are saved and send along any request automatically on the native side and I cant control them by doing e.g. an axios call with cookies on the javascript side.
I looked into react-native-cookies but you run into race conditions if you start setting cookies before every request.
So my question is, if this package also adheres to the limitation that cookies are saved and send automatically or does it have its own cookie managemenet (or none which would be even better) so I am in full control of all cookies?
Cookie management with react native kinda is a pain because cookies are saved and send along any request automatically on the native side and I cant control them by doing e.g. an axios call with cookies on the javascript side.
I looked into react-native-cookies but you run into race conditions if you start setting cookies before every request.
So my question is, if this package also adheres to the limitation that cookies are saved and send automatically or does it have its own cookie managemenet (or none which would be even better) so I am in full control of all cookies?