Skip to content

Commit

Permalink
Merge pull request #29 from rees46/feat/android-full-wish-tracking
Browse files Browse the repository at this point in the history
docs(recomendations): full wish tracking Android
  • Loading branch information
TorinAsakura authored Jun 18, 2024
2 parents 280cb11 + d720e61 commit e497e79
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions source/includes/_tracking.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,16 @@ curl 'https://<%= config[:api_endpoint] %>/push' \

```kotlin
sdk.track(Params.TrackEvent.WISH, "37")

// Full wish tracking

Params full_wish = new Params();
full_wish
.put(Params.Parameter.FULL_WISH, true)
.put(new Params.Item("37"))
.put(new Params.Item("40"));
T.track(Params.TrackEvent.WISH, full_wish);

```

```swift
Expand Down

0 comments on commit e497e79

Please sign in to comment.