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
Specify that Branch should NOT use an invisible SFSafariViewController to attempt cookie-based matching upon install.
744
-
If you call this method, we will fall back to using our pool of cookie-IDFA pairs for matching.
745
-
*/
746
-
- (void)disableCookieBasedMatching __attribute__((deprecated(("Feature removed. Did not work on iOS 11+"))));
747
-
748
-
/**
749
-
TL;DR: If you're using a version of the Facebook SDK that prevents application:didFinishLaunchingWithOptions: from
750
-
returning YES/true when a Universal Link is clicked, you should enable this option.
751
-
752
-
Long explanation: in application:didFinishLaunchingWithOptions: you should choose one of the following:
753
-
754
-
1. Always `return YES;`, and do *not* invoke `[[Branch getInstance] accountForFacebookSDKPreventingAppLaunch];`
755
-
2. Allow the Facebook SDK to determine whether `application:didFinishLaunchingWithOptions:` returns `YES` or `NO`,
756
-
and invoke `[[Branch getInstance] accountForFacebookSDKPreventingAppLaunch];`
757
-
758
-
The reason for this second option is that the Facebook SDK will return `NO` if a Universal Link opens the app
759
-
but that UL is not a Facebook UL. Some developers prefer not to modify
760
-
`application:didFinishLaunchingWithOptions:` to always return `YES` and should use this method instead.
761
-
*/
762
-
- (void)accountForFacebookSDKPreventingAppLaunch __attribute__((deprecated(("Please ensure application:didFinishLaunchingWithOptions: always returns YES/true instead of using this method. It will be removed in a future release."))));
763
-
764
742
/**
765
743
For use by other Branch SDKs
766
744
@@ -786,16 +764,6 @@ Sets a custom base URL for all calls to the Branch API.
- (void)enableDelayedInit __attribute__((deprecated(("No longer valid with new init process"))));
790
-
791
-
- (void)disableDelayedInit __attribute__((deprecated(("No longer valid with new init process"))));
792
-
793
-
- (nullable NSURL *)getUrlForOnboardingWithRedirectUrl:(nullable NSString *)redirectUrl __attribute__((deprecated(("Feature removed. Did not work on iOS 11+"))));;
794
-
795
-
- (void)resumeInit __attribute__((deprecated(("Feature removed. Did not work on iOS 11+"))));
796
-
797
-
- (void)setInstallRequestDelay:(NSInteger)installRequestDelay __attribute__((deprecated(("No longer valid with new init process"))));
798
-
799
767
/**
800
768
Disables the Branch SDK from tracking the user. This is useful for GDPR privacy compliance.
0 commit comments