Skip to content

Commit 82015be

Browse files
committed
remove reference to trackAttributionData flag in code samples
1 parent 29caffc commit 82015be

File tree

1 file changed

+1
-3
lines changed
  • src/connections/destinations/catalog/kitemetrics

1 file changed

+1
-3
lines changed

src/connections/destinations/catalog/kitemetrics/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ pod "Analytics"
3333
pod "Analytics-iAds-Attribution"
3434
```
3535

36-
Segment and Kitemetrics can automatically record the following events: "Application Installed", "Application Opened", "Application Updated", "Install Attributed" and "In-App Purchases". In order to capture those events you need to enable automatic tracking. Ensure you set up [SEGAnalyticsConfiguration](https://segment.com/docs/connections/sources/catalog/libraries/mobile/ios/) as shown below:
36+
Segment and Kitemetrics can automatically record the following events: "Application Installed", "Application Opened", "Application Updated" and In-App Purchases”. In order to capture those events you need to enable automatic tracking. Ensure you set up [SEGAnalyticsConfiguration](https://segment.com/docs/connections/sources/catalog/libraries/mobile/ios/) as shown below:
3737

3838
Swift
3939
```swift
4040
let configuration = SEGAnalyticsConfiguration(writeKey: "YOUR_WRITE_KEY")
4141
configuration.trackApplicationLifecycleEvents = true
42-
configuration.trackAttributionData = true
4342
configuration.trackInAppPurchases = true
4443
configuration.middlewares = [SEGADTracker.middleware()]
4544
SEGAnalytics.setup(with: configuration)
@@ -49,7 +48,6 @@ Objective-C
4948
```objc
5049
SEGAnalyticsConfiguration *configuration = [SEGAnalyticsConfiguration configurationWithWriteKey:@"YOUR_WRITE_KEY"];
5150
configuration.trackApplicationLifecycleEvents = YES;
52-
configuration.trackAttributionData = YES;
5351
configuration.trackInAppPurchases = YES;
5452
configuration.middlewares = @[ [SEGADTracker middleware] ];
5553
[SEGAnalytics setupWithConfiguration:configuration];

0 commit comments

Comments
 (0)