0

I am building an Android app that uses Google Analytics to record various Events and Screens throughout the app. The Engagement Flow dashboard is quite striking but I'd like to export the data and play with it on my own. How can I write my app so that I can extract the data that is used in the Engagement Flow dashboard using the Google Core Reporting API?

Currently, I am using sendEvent and sendView to track Events and Screens respectively in the Engagement Flow. I'm guessing my approach is working because the report works correctly in the Google Analytics UI, but I can't get the data out using the Core Reporting API for Android. I am fairly confident this is doable because I've been able to access the data using the query explorer for our website with the ga:previousPagePath and ga:pagePath dimensions (see screenshot below), but the same thing does not work for the Android SDK. I can get some data out using an undocumented ga:screenName dimension, but the corresponding ga:previousScreenName (and any permutation thereof) does not exist. Thoughts?

enter image description here

For what its worth, others have had similar questions in case its useful:

Community
  • 1
  • 1
dino
  • 2,713
  • 2
  • 26
  • 42

1 Answers1

1

According to Google-Analytics, as of now this feature is not available.

gabe
  • 2,373
  • 2
  • 23
  • 35
  • Can you please share the documentation link that you are referencing? – Shellum Mar 28 '14 at 20:15
  • This was not from documentation but from speaking with them personally. At the time I looked extensively through the docs and didn't find that info there -- but did get it from talking to them. Which is why I posted it here, for others to see. Sorry I don't have a reference! – gabe Mar 29 '14 at 22:48