1

I am trying to implement analytics into my app but when I put the following into AndroidManifest.xml the app stays on a white screen

<meta-data
        android:name="com.google.android.gms.analytics.globalConfigResource"
        android:resource="@xml/global_tracker" />

Also, I cannot send dispatches when I create it programatically, if I use GoogleAnalytics.getInstance(this.getBaseContext()).dispatchLocalHits(); the logical shows this and does not dispatch: V/GAV4īš• Thread[main,5,main]: Dispatch call queued. Dispatch will run once initialization is complete. Thanks! :D

1 Answers1

1

There is a know Analytics bug in Google Play 6.5 that will hand the app on GoogleAnalytics.getInstance(context). Please see this response for details on how to workaround the bug: GoogleAnalytics.getInstance(this) not respond

The issue is fixed in Google Play Services 7.0 that was released in March 19, 2015. Upgrading to 7.0 fixes the deadlock.

Community
  • 1
  • 1
djabi
  • 5,601
  • 18
  • 25