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...

  1. Navigate to your node_modules/react-native/Libraries/Core/Timers/JSTimers.js file.

  2. Look for the variable: MAX_TIMER_DURATION_MS

  3. Change its value to: 10000 * 1000

  4. 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