react-native-branch-deep-linking-attribution
react-native-branch-deep-linking-attribution copied to clipboard
The Branch React Native SDK for deep linking and attribution. Branch helps mobile apps grow with deep links / deeplinks that power paid acquisition and re-engagement campaigns, referral programs, cont...
On the site: https://help.branch.io/developers-hub/docs/react-native#read-deep-link ```typescript // uri is missing from the typedef branch.subscribe(({error, params, uri}) => { if (error) { console.error('Error from Branch: ' + error) return } // params...
Is there any way to customize android share sheet style? Currently, it's bit cut off from both side. Would be nice to set it Full width. According to branch [documentation](https://help.branch.io/using-branch/docs/content-sharing),...
Related to https://github.com/BranchMetrics/react-native-branch-deep-linking-attribution/issues/658 The SDK stops functioning completely on Android until the next time the app is foregrounded if there is an error in `branch.subscribe`. For example: 1. Start app...
I use Netinfo to monitor network connectivity and subscribe/unsubscribe to branch when the network connects/disconnects. The code snippet is here: ``` async componentDidMount() { const netState = await NetInfo.fetch(); if(netState.isConnected...
Hello, we're actively using Branch links in the classical online mode to install the app and deeplink inside of it. Now we're facing a new requirement - in some cases...
The documentation doesn't say anything beyond "if there is no error then params will not be null". What about when there is an error? How should it be handled? If...
I had this issue in my project. `Session initialization already happened. To force a new session, se intent extra, 'branch_force_new_session', to true. ` I am using branch to retrieve some...
related to #41 I'm trying to deeplink into in-app content from a push notification that is received when the app is on foreground. but `branch.subscribe` returns empty params on foreground,...
# Description On first install, the deep link returned to `onOpenComplete` data looks like this: ```json { "error": null, "params": { "+clicked_branch_link": false, "+is_first_session": false, "+non_branch_link": "my_app://open?code=10cfe9be-df1b-4e94-b589-6d53f4b0966a&state=gHzglTN5tnn2KQD1YGz2puOiAsLPoXr9" }, "uri": null...
``` let {channel, completed, error} = await branchUniversalObject.showShareSheet (shareOptions, linkProperties, controlParams) ``` returned false for "completed", even if you send a link to some application Android "react-native": "0.61.5", "react-native-branch": "^5.0.1",...