Skip to content Skip to sidebar Skip to footer

How Can I Get My Android App With Use Branch.io Deeplinking And Support Minimize/resume The App?

I am using Branch.io deeplinking in my Android app, and for the most part, it works well under most scenarios. However, I have a scenario where I register a user (to my service); a

Solution 1:

In addition to Amruta's comment I wanted to contribute. As singleTask is required for proper deep linking to avoid multiple instances of the same activity, our best workaround/suggestion for this issue which hasn't been mentioned yet is to create a transparent deep linking activity. This way you can set a throw away transparent activity to singleTask, init session from it it -> grab params -> route accordingly. Otherwise you're stuck adjusting your main app flow to our requirement of using singleTask. This tends to be the most popular workaround!


Post a Comment for "How Can I Get My Android App With Use Branch.io Deeplinking And Support Minimize/resume The App?"