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
Copy file name to clipboardExpand all lines: Sources/SegmentAppsFlyer/AppsFlyerDestination.swift
+25-4Lines changed: 25 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,26 @@ public class AppsFlyerDestination: UIResponder, DestinationPlugin {
46
46
publicvaranalytics:Analytics?
47
47
48
48
fileprivatevarsettings:AppsFlyerSettings?=nil
49
-
49
+
50
+
private weak varsegDelegate:AppsFlyerLibDelegate?
51
+
private weak varsegDLDelegate:DeepLinkDelegate?
52
+
53
+
// MARK: - Initialization
54
+
55
+
/// Creates and returns an AppsFlyer destination plugin for the Segment SDK
56
+
///
57
+
/// See ``AppsFlyerDestination`` for more information
58
+
///
59
+
/// - Parameters:
60
+
/// - segDelegate: When provided, this delegate will get called back for all AppsFlyerDelegate methods - ``onConversionDataSuccess(_:)``, ``onConversionDataFail(_:)``, ``onAppOpenAttribution(_:)``, ``onAppOpenAttributionFailure(_:)``
61
+
/// - segDLDelegate: When provided, this delegate will get called back for all DeepLinkDelegate routines, or just ``didResolveDeeplink``
0 commit comments