3

I am adding firebase events by using:

    val bundle = Bundle()
    bundle.putString(FirebaseAnalytics.Param.SEARCH_TERM,"searched term")
    firebaseAnalytics.logEvent(FirebaseAnalytics.Event.SEARCH, bundle)

The above event is getting displayed in the DebugView mode but not in the events section of the console. Its been like 2 hours i have generated this event.

Please help.

Cosmic Dev
  • 522
  • 6
  • 20

1 Answers1

2

Its been like 2 hours i have generated this event.

If the events show up in debug view, you have the code wired up correctly. In that case, you'll simply have to wait for the data to show up in the charts, which may take up to 24 hours.

See:

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