Integrating google analytics for a web hosted cocos game is similar to integrating GA in normal websites.
Hope this helps anybody who is trying to achieve the same :)
- Add analytics.js download code to index.html
- use "ga" object to track events in the game.
This gets tricky if you want to do the same for a game that is running from within a mobile app. i.e, if you are embedding the web build from cocos creator into an android / ios app and loading it from disk for displaying in webview.
- Add analytics.js download code to index.html
- Make GA use localStorage if you are not allowing cookies in webview.
- Disable the protocol detection in GA
Following is the code snippet to do it:
Comments