Skip to content

Commit e497e79

Browse files
authored
Merge pull request #29 from rees46/feat/android-full-wish-tracking
docs(recomendations): full wish tracking Android
2 parents 280cb11 + d720e61 commit e497e79

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

source/includes/_tracking.md.erb

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,16 @@ curl 'https://<%= config[:api_endpoint] %>/push' \
627627

628628
```kotlin
629629
sdk.track(Params.TrackEvent.WISH, "37")
630+
631+
// Full wish tracking
632+
633+
Params full_wish = new Params();
634+
full_wish
635+
.put(Params.Parameter.FULL_WISH, true)
636+
.put(new Params.Item("37"))
637+
.put(new Params.Item("40"));
638+
T.track(Params.TrackEvent.WISH, full_wish);
639+
630640
```
631641

632642
```swift

0 commit comments

Comments
 (0)