Justin
Justin

Reputation: 3352

Google Analytics For Android: No tracking information displayed

I'm having a terrible time getting any information to show in the Google Analytics console. Per other StackOverflow questions, here is everything I've tried.

  1. Waited 48 hours for stats to show up
  2. Opened another GA account and waited 48 hours
  3. Verified the information is being sent to Google using "setDebug" (see printout below)
  4. Ran the GA example app and waiting 48 hours
  5. Worked through everything on the the following link
  6. Switched to using EasyTracker code
  7. Ran these tests from three different phones
  8. Ran these tests on local internet and mobile data
  9. Made sure the Google Analytics date range is set correctly
  10. Checked that the "hosts" file on the phone doesn't block GA http requests silently

If it is useful, my tracking ID is in the format UA-xxxxxxxx-1, many examples do not have eight numbers in the middle.

What else could be the problem here? I've compiled as many things as I can, I just can't seem to get any data to show up in GA despite the following....

12-02 09:46:26.020: I/GoogleAnalyticsTracker(27347): Host: www.google-analytics.com
12-02 09:46:26.020: I/GoogleAnalyticsTracker(27347): User-Agent: GoogleAnalytics/1.4.2 (Linux; U; Android 4.2.1; en-us; Nexus 4 Build/JOP40D)
12-02 09:46:26.020: I/GoogleAnalyticsTracker(27347): GET /__utm.gif?utmwv=4.8.1ma&utmn=1427846719&utmt=event&utme=5(**)(0)&utmcs=UTF-8&utmsr=320x494&utmul=en-US&utmac=UA-36617299-1&utmcc=__utma%3D1.2145684843.1354301001.1354462815.1354463165.7%3B&utmht=1354463165997&utmqt=20025 HTTP/1.1
12-02 09:46:26.020: V/GoogleAnalyticsTracker(27347): Scheduled next dispatch
12-02 09:46:26.020: V/GoogleAnalyticsTracker(27347): Sending 1 hits to dispatcher
12-02 09:46:26.280: V/GoogleAnalyticsTracker(27347): HTTP Response Code: 200
12-02 09:46:46.041: V/GoogleAnalyticsTracker(27347): Called dispatch
12-02 09:46:46.041: V/GoogleAnalyticsTracker(27347): ...but there was nothing to dispatch

Upvotes: 4

Views: 2159

Answers (1)

It might be worth checking that you are using the right SDK with the right property setting in Google Analytics.

If you are using SDK 2.0 you need to select "app". If you are not but are using a legacy version then you would need to select "website" and then put in a dummy web address. It wont use the dummy address but will instead accept the data from the SDK.

Please let me know if this helps or if you need me to be more specific.

Upvotes: 3

Related Questions