2

I'm trying send action to analytics in firebase from my app in Android but when i log on in my account in firebase and click event in analytics i don't see my actions. My action i see in DebugView in firebase.Thank you in advance for your help. I send fragment my code:

    private FirebaseAnalytics mFirebaseAnalytics;
    mFirebaseAnalytics = FirebaseAnalytics.getInstance(this);
    Bundle params = new Bundle();
    params.putString(FirebaseAnalytics.Param.CONTENT_TYPE, eventTitle);
    params.putString(FirebaseAnalytics.Param.ITEM_ID, eventName);
    params.putString(FirebaseAnalytics.Param.ITEM_NAME, eventName);
    mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, params);
Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
KarolK
  • 23
  • 3

1 Answers1

0

If the events show up in Debug View, it means that everything is configured correctly and your events are being sent to the server. These events should show up straight away in Stream View too, since that uses the same mechanism as Debug View does.

In that case it's most likely waiting for the data to be aggregated into reports. This is either a matter of time, or a matter of having enough users (in the case of audiences), before the event shows up in the Analytics reports.

Also see:

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807