Setting a timer for a long period of time, i.e. multiple minutes
Just add these two lines
import { LogBox } from 'react-native';
LogBox.ignoreLogs(['Setting a timer']);
To fix this issue...
Navigate to your
node_modules/react-native/Libraries/Core/Timers/JSTimers.js
file.Look for the variable:
MAX_TIMER_DURATION_MS
Change its value to:
10000 * 1000
Save the changes (with auto format turned off) and re-build your app.
Found this answer on https://github.com/firebase/firebase-js-sdk/issues/97#issuecomment-485410026