FeelRightz
FeelRightz

Reputation: 2999

Confusing Dynamic Link Document

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

Upvotes: 3

Views: 276

Answers (1)

FeelRightz
FeelRightz

Reputation: 2999

For someone who maybe like me non native developer from react-native.

Can refer to this link https://codorial.com/g/invertase/tutorials/ios-xcode-custom-url-scheme

And what I do is [FIROptions defaultOptions].deepLinkURLScheme = @"com.example.ios";

Upvotes: 3

Related Questions