Reputation: 4259
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.
Upvotes: 0
Views: 1094
Reputation: 13613
Alex from Branch.io here: Facebook, Skype, and LinkedIn all do not support Universal Links on iOS. This means it is not possible to launch your app directly from the feed in any of these apps.
You'll need to enable the Deepviews feature. This will open a preview of your content in a web view, with a button that your user can click to open the app. It's an extra step, but currently the best option available.
Upvotes: 1