react-native-countdown-component
                                
                                
                                
                                    react-native-countdown-component copied to clipboard
                            
                            
                            
                        Android Timer decrease with in seconds (very fastly)
I have upgraded my environment "react": "18.1.0", "react-native": "0.70.4", Now in Android release apk timer decreases within seconds. Its does not happen always but mostly. So I start a timer for 10 minutes and it decreases to 0 in less than 2 minutes. It is working fine on iOS devices.
@LuisArturoMR @HelloRibs @isaacnass @talalmajali any idea?
Same is happeing with me
similar issue sometimes the timer is stuck also.
@yasir-syed @c-info @sourabhCCSD any update about this issue.
nops. No update yet, i m resetting it right after 2 seconds to catch it back, normally it works fine after one reset. but sometimes a 10 minute countdown happens with in 8-9 minutes, so i also reset it after every 30 seconds as well. there may be a better way, but that's what I have done so far sample for resetting
     this.setState({
        remainingSeconds: 0,
      });
      setTimeout(() => {
        this.setState({
          remainingSeconds: /*this.what_ever_get_Remaining_Seconds_logic_is()*/
        });
      }, 100);