Reputation: 461
I have an event that is triggered along with the parameters and its values when a particular action is completed on the App. We've made this change for both iOS and Android apps.
The issue I am facing is that for iOS when I try to fetch data in BigQuery this parameter value is "null" for this event.
We set up debugView in Firebase console and on triggering this event on an iOS device we observed the said parameter value being populated in the event.
I assume my query is also correct since the BigQuery results show this value for Android devices.
Has someone faced such an issue?
SDK Versions used
react-native-firebase: 5.3.1
iOS SDK version: 5.19.0
Upvotes: 0
Views: 442
Reputation: 461
Figured this out.
For some reason for the events triggered on iOS these values are populated as "double" values and not int. Not sure why since our codebase triggers this as int type
Upvotes: 1