I tried to set up dynamic link to my iOS project and follow https://rnfirebase.io/docs/v4.1.x/links/ios document.
In document number 5. that need to update the AppDelegate.m
file.
FIROptions defaultOptions].deepLinkURLScheme = CUSTOM_URL_SCHEME;
What is CUSTOM_URL_SCHEME
?
From the explanation : ^-- where CUSTOM_URL_SCHEME
is the custom URL scheme you defined in your Xcode project.
I still really don't know where CUSTOM_URL_SCHEME
is.
https://codorial.com/g/salakar/tutorials/ios-xcode-custom-url-scheme
We have a tutorial for that, thought I added it to the docs but seems not! Will get it sorted, otherwise a PR to add the link also welcome.
Basically:
[FIROptions defaultOptions].deepLinkURLScheme = @"com.example.ios";
The link is broken https://github.com/invertase/react-native-firebase/issues/1094#issuecomment-389420919 @Salakar
What is CUSTOM_URL_SCHEME
Basically, it is the bundle id you give in the developer account.
Most helpful comment
The link is broken https://github.com/invertase/react-native-firebase/issues/1094#issuecomment-389420919 @Salakar