diff --git a/README.md b/README.md index b2e26bb4..77c7baed 100644 --- a/README.md +++ b/README.md @@ -807,7 +807,7 @@ After that, refer to this page of the [React Native offical docs][rn-linking] fo While deferred deep linking is not supported out of the box on Android and iOS, our Adjust SDK makes it possible. -In order to get info about the URL content in a deferred deep linking scenario, you should set a callback method on the `AdjustConfig` object which will receive one parameter where the content of the URL will be delivered. You should set this method on the config object by calling the method `setDeeplinkCallbackListener`: +In order to get info about the URL content in a deferred deep linking scenario, you should set a callback method on the `AdjustConfig` object which will receive one parameter where the content of the URL will be delivered. You should set this method on the config object by calling the method `setDeferredDeeplinkCallbackListener`: ```js var adjustConfig = new AdjustConfig(appToken, environment); @@ -828,7 +828,7 @@ var adjustConfig = new AdjustConfig(appToken, environment); adjustConfig.setShouldLaunchDeeplink(true); // or adjustConfig.setShouldLaunchDeeplink(false); -adjustConfig.setDeeplinkCallbackListener(function(deeplink) { +adjustConfig.setDeferredDeeplinkCallbackListener(function(deeplink) { console.log("Deferred deep link URL content: " + deeplink); });