You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Android, we're supposed to include the following for an app written in Java:
// This goes in the getAutoInstance call in your Application class
Branch.getAutoInstance(this).enableFacebookAppLinkCheck();
But the enableFacebookAppLinkCheck method isn't even defined in this repo, so I'm assuming support is missing there. Also, the example app doesn't provide an example of how to implement in C#.
For iOS, we're supposed to include the following for a native app written in Objective C:
// This goes BEFORE initSession is called in didFinishLaunchingWithOptions
[[Branch getInstance] registerFacebookDeepLinkingClass:[FBSDKAppLinkUtility class]]
Although registerFacebookDeepLinkingClass is defined in this repo, there's no example of how to implement it in C#, so we're kind of left to guess.
Hoping someone can help out here! Thanks!
The text was updated successfully, but these errors were encountered:
According to this Branch article on supporting Facebook App Install Campaigns, there are a few code snippets we need to add.
For Android, we're supposed to include the following for an app written in Java:
But the
enableFacebookAppLinkCheck
method isn't even defined in this repo, so I'm assuming support is missing there. Also, the example app doesn't provide an example of how to implement in C#.For iOS, we're supposed to include the following for a native app written in Objective C:
Although
registerFacebookDeepLinkingClass
is defined in this repo, there's no example of how to implement it in C#, so we're kind of left to guess.Hoping someone can help out here! Thanks!
The text was updated successfully, but these errors were encountered: