diff --git a/docs/branch.json.md b/docs/branch.json.md index 2950b527d..5b1cd5886 100644 --- a/docs/branch.json.md +++ b/docs/branch.json.md @@ -96,11 +96,11 @@ version 3.x of react-native-branch, using [RNBranchModule.getAutoInstance()](../ |key|description|type| |---|---|---| -|appleSearchAdsDebugMode|If true, `setAppleSearchAdsDebugMode` will be called on the iOS Branch instance. Ignored on Android.|Boolean| |branchKey|The Branch key to use. Overrides liveKey, testKey and useTestInstance.|String| |liveKey|The live Branch key to use if useTestInstance is false. Ignored if useTestInstance is true or branchKey is present.|String| |debugMode|If true, `setDebug` will be called in the native SDK, enabling testing of install events.|Boolean| |delayInitToCheckForSearchAds|If true, `delayInitToCheckForSearchAds` will be called on the iOS Branch instance. Ignored on Android.|Boolean| +|enableFacebookLinkCheck|If true, results in calling `enableFacebookAppLinkCheck()` in the Branch Android SDK and `registerFacebookDeepLinkingClass:` in the Branch iOS SDK.|Boolean| |testKey|The test Branch key to use if useTestInstance is true. Ignored if useTestInstance is false or branchKey is present.|String| |useTestInstance|Determines whether liveKey or testKey is used if branchKey is not present.|Boolean| @@ -115,6 +115,6 @@ See [branch.example.json](https://github.com/BranchMetrics/react-native-branch-d "testKey": "key_test_yyyy", "useTestInstance": true, "delayInitToCheckForSearchAds": true, - "appleSearchAdsDebugMode": true + "enableFacebookLinkCheck": true } ```