Problem: When adding "@react-native-firebase/dynamic-links": "^6.0.3",
to our react-native app the app loads for about 10seconds before the splash screen. The app was launch through home screen and NOT a link.
Gathered knowledge: The firebase library looks up https://firebasedynamiclinks-ipv6.googleapis.com/v1
which is not resolved and gives an error result. Then in FIRDLDefaultRetrievalProcessV2.m#handleRequestResultsUpdated
resultsThatEncounteredErrors.count > 0
is triggered. The next thing that happens is that openURL
is called on the url BUNDLENAME://google/link/?dismiss=1&is_weak_match=1
which seems to cause the UI freeze.
Could someone help find out why by adding the Pod it cause a UI freeze?