I am using Brach SDK to implement deep linking into our iOS Application. The Branch URL redirects directly to App Store if I am opening from FB, Skype, LinkedIn iOS App. But it redirecting to our app if we are opening from the Whatsapp and Twitter.
I have followed all the steps which is written into this doc and this que. I have followed this answer, the app will be open if it is installed from the App Store/Test Flight/Ad Hoc. I have tried this, but not able to get success into this.
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray *restorableObjects))restorationHandler
{
BOOL handledByBranch = [[Branch getInstance] continueUserActivity:userActivity];
return handledByBranch;
}
Let me know, I have missed anything to implement this. The Branch URL redirects directly to App Store if I am opening from FB, Skype, LinkedIn iOS App. So How can I open app from this apps via Branch URL..?
Any help would be appreciated.