Is it possible to integrate in app, created by Corona SDK, Google Analytics?
Google Analytics only works in web browsers because it’s implemented in JavaScript. You can try messing about with WebViews but you’re probably better off using a real mobile analytics solution.
Good to know. I’ll take a look.
Google Analytics only works in web browsers because it’s implemented in JavaScript. You can try messing about with WebViews but you’re probably better off using a real mobile analytics solution.
Good to know. I’ll take a look.
Is anyone working on a way to use Google Mobile App Analytics from Corona? Flurry is nice, but this would be a huge improvement.
+1
You can use what Google calls the Measurement Protocol, which is a restful solution to interact with their analytics servers. If you’re a Corona Enterprise user, I suspect you could bundle in Google’s native libraries for analytics.
Please consider putting in a request for this at http://feedback.coronalabs.com or voting for if it’s already there.
Is anyone working on a way to use Google Mobile App Analytics from Corona? Flurry is nice, but this would be a huge improvement.
+1
You can use what Google calls the Measurement Protocol, which is a restful solution to interact with their analytics servers. If you’re a Corona Enterprise user, I suspect you could bundle in Google’s native libraries for analytics.
Please consider putting in a request for this at http://feedback.coronalabs.com or voting for if it’s already there.
Sorry to bring up an old post.
It is possible to implement a basic version of Google Analytics using the Measurement Protocol. I wrote a basic module which tracks events such as moving between storyboard scenes.
You can find out more details here: https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide
I am looking for the replacement of flurry analytics. And I would like to try the google analytics too. Would you mind to share your module? How the data send to google if user is offline? I have a quick look on Measurement Protocol. It should be HTTP call, right? Will it save the data when user is offline?
Thanks
Edit:
I found another thread http://forums.coronalabs.com/topic/33932-user-agent-and-google-analytics
Seems I need to handle the offline issue by my own.
Sorry to bring up an old post.
It is possible to implement a basic version of Google Analytics using the Measurement Protocol. I wrote a basic module which tracks events such as moving between storyboard scenes.
You can find out more details here: https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide
I am looking for the replacement of flurry analytics. And I would like to try the google analytics too. Would you mind to share your module? How the data send to google if user is offline? I have a quick look on Measurement Protocol. It should be HTTP call, right? Will it save the data when user is offline?
Thanks
Edit:
I found another thread http://forums.coronalabs.com/topic/33932-user-agent-and-google-analytics
Seems I need to handle the offline issue by my own.
Is it possible to implement google analytics ?