React-native-firebase: Confusing Dynamic Link Document

Created on 16 May 2018  路  4Comments  路  Source: invertase/react-native-firebase

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.

image

Most helpful comment

All 4 comments

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";

What is CUSTOM_URL_SCHEME

Basically, it is the bundle id you give in the developer account.

Was this page helpful?
0 / 5 - 0 ratings