Skip to content

docs(react-native): add iOS deep linking prerequisite steps (URL Types & Associated Domains) #680

Description

@coderabbitai

Summary

The React Native SDK deep linking documentation for iOS (in src/content/docs/developer-tools/sdks/native/react-native-sdk.mdx) shows AppDelegate code for handling custom scheme callbacks (openURL) and universal links (continueUserActivity), but is missing the required registration steps that must be performed before those handlers will be invoked by iOS.

Missing documentation

Add a brief prerequisite section before the AppDelegate snippets covering:

  • Custom scheme callback: register your scheme under Info > URL Types (CFBundleURLTypes) in Info.plist.
  • Universal links: add the Associated Domains capability with applinks:<your-domain> in your entitlements file, and host a valid apple-app-site-association file on the domain.

Without these registrations, iOS will not invoke the AppDelegate handlers shown in the documentation, making the setup instructions incomplete.

References

/cc @victoreronmosele

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions