-
Notifications
You must be signed in to change notification settings - Fork 44
Some events are not getting tracked #23
Comments
I'll have a look in the next couple of days and I'll let you know. |
I have also noticed social events not being tracked, have used normal events instead |
I don't think an app is allowed to do +1 Google, like on facebook, etc. on behalf of a user, so it's probably impossible to track social events from an app (unless you can actually find a way to integrate those buttons directly into your app that then send a request to Google/Facebook, it's probably possible with Facebook graph API but I dunno about Google). |
@sattaman & @zarnaagames a fix is coming, don't despair |
@alebianco That makes sense. :) |
I verified and fixed the bug on Android but I still need to check it on iOS. |
Hi,
I tried an example that you provided.
Here is my code-
// Track an event
tracker.buildEvent("click", "button").withLabel("play").withValue(10).track();
tracker.buildEvent("click", "button").withLabel("stop").track();
tracker.buildEvent("swipe", "screen").withValue(1).track();
tracker.buildEvent("app", "quit").track();
tracker.buildSocial("Facebook", "like").track();
Now I can see events on google but only 1st 2 events are appearing on dashboard.
I observed that only events with label are getting tracked.
tracker.buildSocial events are not getting tracked at all.
What to do???
Am I doing something wrong????
Please let me know
The text was updated successfully, but these errors were encountered: