https://github.com/user-attachments/assets/a3e5c4eb-0493-4229-b4a8-253dace15bb4 Simple use-case on android emulator using Contacts app ``` React.useEffect(() => { const listener = AppLifecycle.addEventListener('change', (state) => { console.log('main state', state) if (state === 'active') { console.log('active') dispatch(getAndSetContactsSaga()) } }); return () => listener.remove(); }, []) ``` It seems to work for a bit, then stop triggering the "main state" log messages.
appstate-bug.mov
Simple use-case on android emulator using Contacts app
It seems to work for a bit, then stop triggering the "main state" log messages.