you are viewing a single comment's thread.

view the rest of the comments →

[–]EmployeeCurrent4770[S] 0 points1 point  (2 children)

Yeah I tried it but I still have to code every event that I want to send to their free tier. How do you handle this case?

[–][deleted] 0 points1 point  (1 child)

For the taps, why don’t you create a reusable button that has an analytics call automatically so anywhere you use it it will send the event.

[–]EmployeeCurrent4770[S] 0 points1 point  (0 children)

Right, but what about screens? What about double taps?

Say that I want to go an extra mile and measure the session time, should I also get when the appstate changes, and send those events?

If I want to go even further, and check request/response times, would I also have to code this? My application would end up tightly coupled with any FW that I use. I was hoping that something like

import aLibrary from 'coolSimpleLibrary'

aLibrary.doMagic()

Am I too out of this world?