By default react-native projects are created with a launchMode of singleTask, presumably so that deep links (via Linking) are supported out of the box: https://reactnative.dev/docs/linking#enabling-deep-links
However, using a launchMode of singleTask prevents this package from working properly (#350)
When using the standard launchMode, opening deep links to your app can result in multiple instances of your app running, which is not an acceptable user experience.
By default react-native projects are created with a launchMode of
singleTask, presumably so that deep links (via Linking) are supported out of the box: https://reactnative.dev/docs/linking#enabling-deep-linksHowever, using a launchMode of
singleTaskprevents this package from working properly (#350)When using the
standardlaunchMode, opening deep links to your app can result in multiple instances of your app running, which is not an acceptable user experience.