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
🛠 In order for us to provide optimal support, we would kindly ask you to submit any issues to [email protected]
@@ -48,12 +48,12 @@ To install the segment-appsflyer-ios integration:
48
48
49
49
**Production** version:
50
50
```ruby
51
-
pod 'segment-appsflyer-ios', '6.8.1'
51
+
pod 'segment-appsflyer-ios', '6.9.1'
52
52
```
53
53
54
54
**Strict mode SDK** version:
55
55
```ruby
56
-
pod 'segment-appsflyer-ios/Strict', '6.8.1'
56
+
pod 'segment-appsflyer-ios/Strict', '6.9.1'
57
57
```
58
58
Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids).
59
59
@@ -65,7 +65,7 @@ Use the strict mode SDK to completely remove IDFA collection functionality and A
@@ -220,7 +219,7 @@ In identify call ```traits``` dictionary ```setCustomerUserID``` and ```currenc
220
219
In order to get Conversion Data you need to:
221
220
222
221
1. Add `SEGAppsFlyerLibDelegate` protocol to your AppDelegate.h (or other) class
223
-
```
222
+
```objective-c
224
223
#import<UIKit/UIKit.h>
225
224
#import"SEGAppsFlyerIntegrationFactory.h"
226
225
@@ -229,7 +228,7 @@ In identify call ```traits``` dictionary ```setCustomerUserID``` and ```currenc
229
228
2. Pass AppDelegate (or other) class when configuring Segment Analytics with AppsFlyer. Change line `[config use:[SEGAppsFlyerIntegrationFactory instance]];` to `[config use:[SEGAppsFlyerIntegrationFactory createWithLaunchDelegate:self]];`
230
229
3. In the class passed to the method above (AppDelegate.m by default) implement methods of the `SEGAppsFlyerLibDelegate` protocol. See sample code below:
231
230
232
-
```
231
+
```objective-c
233
232
#import "AppDelegate.h"
234
233
235
234
@interface AppDelegate ()
@@ -291,7 +290,7 @@ In identify call ```traits``` dictionary ```setCustomerUserID``` and ```currenc
291
290
2. Pass AppDelegate (or other) class when configuring Segment Analytics with AppsFlyer. If you use sample code from above, change line `config.use(factoryNoDelegate)` to `config.use(factoryWithDelegate)`
292
291
3. Implement methods of the protocol in the class, passed as a delegate. See sample code below where AppDelegate is used for that:
If you are working with networks that don't allow passing user level data to 3rd parties, you will need to apply code to filter out these networks before calling
0 commit comments