From fb079379ce0c7f04b4fe76fdf81815640a80ed8e Mon Sep 17 00:00:00 2001 From: glory-jeong <65356865+glory-jeong@users.noreply.github.com> Date: Tue, 26 Nov 2024 17:06:22 +0900 Subject: [PATCH] Update deep-linking.md Firebase will shut down Dynamic Links, airbridge is one of the alternative service for Dyanamic Links. --- versioned_docs/version-7.x/deep-linking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-7.x/deep-linking.md b/versioned_docs/version-7.x/deep-linking.md index 0d955f7332a..e43fb902453 100755 --- a/versioned_docs/version-7.x/deep-linking.md +++ b/versioned_docs/version-7.x/deep-linking.md @@ -291,7 +291,7 @@ adb shell am start -W -a android.intent.action.VIEW -d "exp://127.0.0.1:19000/-- ## Third-party integrations -React Native's `Linking` isn't the only way to handle deep linking. You might also want to integrate other services such as [Firebase Dynamic Links](https://firebase.google.com/docs/dynamic-links), [Branch](https://help.branch.io/developers-hub/docs/react-native) etc. which provide their own API for getting notified of incoming links. +React Native's `Linking` isn't the only way to handle deep linking. You might also want to integrate other services such as [Firebase Dynamic Links](https://firebase.google.com/docs/dynamic-links)(Firebase will shut down Dynamic links on August 25, 2025), [Airbridge](https://help.airbridge.io/en/developers/deep-link-plan-react-native-sdk-v4), [Branch](https://help.branch.io/developers-hub/docs/react-native) etc. which provide their own API for getting notified of incoming links. To achieve this, you'd need to override how React Navigation subscribes to incoming links. To do so, you can provide your own [`getInitialURL`](navigation-container.md#linkinggetinitialurl) and [`subscribe`](navigation-container.md#linkingsubscribe) functions: