public override void ShareLink(IBranchLinkShareInterface callback, BranchUniversalObject universalObject, BranchLinkProperties linkProperties, string message) { BranchLinkShareListener obj = new BranchLinkShareListener(callback); callbacksList.Add(obj as Object); IO.Branch.Indexing.BranchUniversalObject resBuo = BranchAndroidUtils.ToNativeBUO(universalObject); IO.Branch.Referral.Util.LinkProperties resBlp = BranchAndroidUtils.ToNativeBLP(linkProperties); IO.Branch.Referral.Util.ShareSheetStyle style = new IO.Branch.Referral.Util.ShareSheetStyle(appContext, "", message); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Facebook); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Twitter); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Message); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Email); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Flickr); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.GoogleDoc); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.WhatsApp); resBuo.ShowShareSheet(CurrActivity, resBlp, style, obj); }
public override void ShareLink(IBranchLinkShareInterface callback, BranchUniversalObject universalObject, BranchLinkProperties linkProperties, string message) { IOSNativeBranch.BranchUniversalObject buo = BranchIOSUtils.ToNativeUniversalObject(universalObject); IOSNativeBranch.BranchLinkProperties blp = BranchIOSUtils.ToNativeLinkProperties(linkProperties); UIKit.UIWindow window = UIKit.UIApplication.SharedApplication.KeyWindow; buo.ShowShareSheetWithLinkProperties(blp, message, window.RootViewController, delegate(string url, bool isShared) {}); }
public override void ShareLink(IBranchLinkShareInterface callback, BranchUniversalObject universalObject, BranchLinkProperties linkProperties, string message) { BranchLinkShareListener obj = new BranchLinkShareListener(callback); callbacksList.Add(obj as Object); IO.Branch.Indexing.BranchUniversalObject resBuo = IO.Branch.Indexing.BranchUniversalObject.CreateInstance(BranchAndroidUtils.ToJSONObject(universalObject.ToDictionary())); IO.Branch.Referral.Util.LinkProperties resBlp = new IO.Branch.Referral.Util.LinkProperties(); foreach (string tag in linkProperties.tags) { resBlp.AddTag(tag); } foreach (string key in linkProperties.controlParams.Keys) { resBlp.AddControlParameter(key, linkProperties.controlParams[key]); } resBlp.SetAlias(linkProperties.alias); resBlp.SetChannel(linkProperties.channel); resBlp.SetDuration(linkProperties.matchDuration); resBlp.SetFeature(linkProperties.feature); resBlp.SetStage(linkProperties.stage); IO.Branch.Referral.Util.ShareSheetStyle style = new IO.Branch.Referral.Util.ShareSheetStyle(appContext, "", message); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Facebook); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Twitter); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Message); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Email); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.Flickr); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.GoogleDoc); style.AddPreferredSharingOption(IO.Branch.Referral.SharingHelper.SHARE_WITH.WhatsApp); resBuo.ShowShareSheet(CurrActivity, resBlp, style, obj); }
public BranchLinkShareListener(IBranchLinkShareInterface callback) { this.callback = callback; }
/// <summary> /// Shares the link. /// </summary> /// <param name="callback">Callback.</param> /// <param name="universalObject">Universal object.</param> /// <param name="linkProperties">Link properties.</param> /// <param name="message">Message.</param> abstract public void ShareLink(IBranchLinkShareInterface callback, BranchUniversalObject universalObject, BranchLinkProperties linkProperties, string message);