Skip to content

Commit

Permalink
ץ
Browse files Browse the repository at this point in the history
  • Loading branch information
morisgateno-appsflyer committed Jun 13, 2024
1 parent f221150 commit fd7beb7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,13 @@ - (void)identify:(SEGIdentifyPayload *)payload
}

- (void) start {
[self.appsflyer start];
[self.appsflyer startWithCompletionHandler:^(NSDictionary<NSString *,id> * _Nullable dictionary, NSError * _Nullable error) {
if(error == nil){

[self.appsflyer logEvent:@"Start-Success" withValues:@{}];

}
}];
}


Expand Down Expand Up @@ -257,7 +263,7 @@ - (void)onConversionDataSuccess:(nonnull NSDictionary *)conversionInfo {
// 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
// `[self.analytics track:@"Install Attributed" properties:[properties copy]];`
[self.analytics track:@"Install Attributed" properties: [properties copy]];
[self.analytics track:@"GCD-Success" properties: [properties copy]];


}
Expand Down

0 comments on commit fd7beb7

Please sign in to comment.