You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello there, I saw the discussion here expo/examples#209 and that the implementation around handling refresh tokens with Expo is still foggy so I turned to your library. I successfully plugged it in my react native project however I am getting the following warning:
Setting a timer for a long period of time, i.e. multiple minutes, is a performance and correctness issue on Android as it keeps the timer module awake, and timers can only be called when the app is in the foreground. See facebook/react-native#12981 for more info.
I found out that I can suppress the warning using LogBox.ignoreLogs(['Setting a timer for a long period of time']); however I am not sure that would be the right way to go so I wanted to ask for your expertise on the matter as to what would the best approach be. Regards!
The text was updated successfully, but these errors were encountered:
Hello there, I saw the discussion here expo/examples#209 and that the implementation around handling refresh tokens with Expo is still foggy so I turned to your library. I successfully plugged it in my react native project however I am getting the following warning:
which comes from this piece of code:
I found out that I can suppress the warning using
LogBox.ignoreLogs(['Setting a timer for a long period of time']);
however I am not sure that would be the right way to go so I wanted to ask for your expertise on the matter as to what would the best approach be. Regards!The text was updated successfully, but these errors were encountered: