hansemannn / titanium-firebase-analytics

Use the Firebase Analytics SDK in Axway Titanium 🚀
Other
35 stars 18 forks source link

Several "not set" values in Firebase Analytics Events #53

Closed caspahouzer closed 3 years ago

caspahouzer commented 4 years ago

I've got a lot of not set values in my events. I'm firing the events all the same and be sure, that the labels and the UserPropertyString is NOT empty. Anyways, there are these not set values.

Bildschirmfoto 2019-10-02 um 09 15 31 Bildschirmfoto 2019-10-02 um 09 15 24

How can I avoid this? From where does this behavior is sourced?

dublin-anondson-movista commented 4 years ago

@caspahouzer did you ever figure out what was going on to cause that? I've been having the same problem and have yet to figure out what's going on. I thought it might be related to this stackoverflow question but I've had no luck by converting the values I'm passing.

dublin-anondson-movista commented 4 years ago

Figured my problem out, when passing parameters I was setting the key and value to the same value {aVeryUniqueValue: aVeryUniqueValue}. And not defining them correctly within firebase so they weren't ever showing up.

Changing it to a concrete param name like {userAction: aVeryUniqueValue} fixed it.