Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Campaign installs on Android not tracked in Facebook Analytics for Apps #50

Closed
goshki opened this issue Dec 12, 2016 · 1 comment
Closed

Comments

@goshki
Copy link

goshki commented Dec 12, 2016

I'm observing a large difference in tracking campaign installations between Android and iOS. Analytics for Apps show about 1000 installs on iOS and just 5 on Android (which correlates to the number of developer installations of the game). I'm cross-checking in Game Analytics and Google Developer console and I can see that there are much more Android players than reported by install tracking (and they're not organic players).

I've integrated Facebook SDK for Unity as described here and here, with a standard activation procedure described here:

void Awake() {
    if (!FB.IsInitialized) {
        FB.Init(() => {
            FB.ActivateApp();
        });
    } else {
        FB.ActivateApp();
    }
}

void OnApplicationPause(bool pause) {
    if (!pause) {
        FB.ActivateApp();
    }
}

The Facebook application created for this project has been reviewed and approved by Facebook team. Is there anything that I'm not aware of that would prevent campaing installs from being tracked properly by Facebook SDK for Unity on Android?

@goshki
Copy link
Author

goshki commented Dec 21, 2016

Seems like the issue was not SDK related.

@goshki goshki closed this as completed Dec 21, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant