I am using branch io SDK in Android. However, I am facing issues in redirection. The link gets redirected to my app whenever it is clicked from Facebook. However, it is not redirected to my app whenever it is clicked from a browser. This occurs randomly. In some devices, it redirects to the app from the default browser but not from any other browser. In other devices, it redirects the app only from Chrome and not any other browser.
EDIT:
It redirets to the app every time from the Facebook app.
I have the following code with me :
Code in Android Manifest
<meta-data
android:name="io.branch.sdk.BranchKey"
android:value="key_live_my_key" />
This is how I generate the link:
BranchUniversalObject branchUniversalObject = new BranchUniversalObject()
.setCanonicalIdentifier("item/12345")
.setTitle("My Content Title")
.setContentDescription("My Content Description");
LinkProperties linkProperties = new LinkProperties()
.setChannel("sms")
.setFeature("invite")
.addControlParameter("My id", Parameter);