ios - Where is the FIReventNames.h file listing the various event classes for Google Firebase? -


we want log event in google firebase in yahoo flurry:

[flurry logevent:@"stats page visited"];

how?

google firebase documentation claims find "suggested events see fireventnames.h header file" unable find file.

where find file?

  • searching project in xcode - don't see though have installed pod files firebase/analytics.
  • search google , there essentially nothing. there five results. not 5 pages. 5 results. 3 of results duplicates of page linked above.
  • if @ ios samples, contribute nothing additional. google's sample code gives 3 examples logging firebase events , exact same examples on page referenced above. none seem show trying above.

we seem unable find of other classes various event types.

where find suggested firebase analytic event logging classes?

fireventnames.h can found in pods/firebaseanalytics/frameworks/firebaseanalytics.framework/headers

to log event firebase analytics, first :

@import firebaseanalytics; 

then issue following call :

[firanalytics logeventwithname:@"stats_page_visited" parameters:nil]; 

Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -